

      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #1a0033;
        }

        /* Top Navigation Bar */
        .header-top {
            background-color: #4B0082;
            padding: 12px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            color: #FFFFFF;
        }

        .logo-circle {
            width: 32px;
            height: 32px;
            background-color: #FFD700;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #4B0082;
            font-weight: 900;
        }

        .logo-text {
            color: #FFD700;
        }

        /* Search Section */
        .search-section {
            display: flex;
            gap: 12px;
            flex: 1;
            max-width: 500px;
            margin: 0 40px;
        }

        .dropdown {
            padding: 10px 16px;
            border: 1px solid #FFD700;
            border-radius: 4px;
            background-color: #1a0033;
            cursor: pointer;
            font-size: 14px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .dropdown:hover {
            border-color: #FFD700;
            background-color: #2d004d;
        }

        .dropdown-arrow {
            width: 4px;
            height: 4px;
            border-right: 2px solid #FFD700;
            border-bottom: 2px solid #FFD700;
            transform: rotate(-45deg);
        }

        .search-container {
            display: flex;
            align-items: center;
            flex: 1;
            border: 1px solid #FFD700;
            border-radius: 4px;
            background-color: #1a0033;
            gap: 8px;
            padding: 0 12px;
        }

        .search-container input {
            border: none;
            outline: none;
            flex: 1;
            padding: 10px 0;
            font-size: 14px;
            background-color: transparent;
            color: #FFFFFF;
        }

        .search-btn {
            background-color: #FFD700;
            border: none;
            padding: 10px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #4B0082;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background-color 0.2s;
        }

        .search-btn:hover {
            background-color: #FFC700;
        }

        .search-icon {
            width: 16px;
            height: 16px;
        }

        /* Right Section */
        .header-right {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .auth-link {
            text-decoration: none;
            color: #FFD700;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .auth-link:hover {
            color: #FFFFFF;
        }

        .post-btn {
            background-color: #FFD700;
            color: #4B0082;
            border: none;
            padding: 10px 24px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: background-color 0.2s;
        }

        .post-btn:hover {
            background-color: #FFFFFF;
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: #2d004d;
            padding: 12px 40px;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .breadcrumb-item {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .breadcrumb-item:hover {
            color: #FFD700;
        }

        .breadcrumb-separator {
            color: #FFD700;
            opacity: 0.7;
        }

        .home-icon {
            width: 16px;
            height: 16px;
        }

        /* Page Content */
        .main-content {
            padding: 40px;
            background-color: #1a0033;
        }

        .page-title {
            margin-bottom: 40px;
            text-align: center;
        }

        .page-title h1 {
            font-size: 32px;
            color: #FFD700;
            font-weight: 700;
            margin: 0;
        }

        /* Cards Container - 1 Card Per Row */
        .cards-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Individual Card - Horizontal Layout */
        .card {
            display: flex;
            flex-direction: row;
            background-color: #2d004d;
            border-radius: 12px;
            border-left: 5px solid #FFD700;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .card:hover {
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        /* Card Image - Left Side */
        .card-left {
            flex-shrink: 0;
            width: 250px;
            height: 200px;
            overflow: hidden;
            border-radius: 8px 0 0 8px;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Card Content - Middle */
        .card-content {
            flex: 1;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-title {
            font-size: 18px;
            color: #FFD700;
            font-weight: 700;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }

        .card-description {
            font-size: 13px;
            color: #FFFFFF;
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Tags */
        .card-tags {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .tag-age {
            background-color: #FFD700;
            color: #4B0082;
        }

        .tag-location {
            background-color: #800020;
            color: #FFFFFF;
        }

        /* Card Right Section - Contact Buttons */
        .card-right {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            gap: 12px;
            min-width: 380px;
            border-left: 1px solid #4B0082;
        }

        .phone-number {
            background-color: #800020;
            color: #FFFFFF;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            text-align: center;
            word-break: break-word;
            cursor: pointer;
            transition: background-color 0.2s;
            min-width: 140px;
        }

        .phone-number:hover {
            background-color: #a00028;
        }

        /* Contact Icons */
        .contact-icons {
            display: flex;
            gap: 10px;
            width: 100%;
            justify-content: center;
        }

        .icon-btn {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            padding: 0;
        }

        .icon-email {
            background-color: #FFD700;
            color: #4B0082;
        }

        .icon-email:hover {
            background-color: #FFC700;
        }

        .icon-telegram {
            background-color: #4B0082;
            color: #FFFFFF;
        }

        .icon-telegram:hover {
            background-color: #6B0FA8;
        }

        .icon-whatsapp {
            background-color: #800020;
            color: #FFFFFF;
        }

        .icon-whatsapp:hover {
            background-color: #a00028;
        }

        .icon-btn svg {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .card-right {
                min-width: 320px;
                padding: 20px;
            }

            .card-left {
                width: 220px;
                height: 180px;
            }

            .card-content {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 24px;
            }

            .page-title h1 {
                font-size: 26px;
            }

            .cards-container {
                max-width: 100%;
                gap: 16px;
            }

            .card {
                flex-direction: column;
            }

            .card-left {
                width: 100%;
                height: 200px;
                border-radius: 12px 12px 0 0;
            }

            .card-content {
                padding: 16px;
            }

            .card-title {
                font-size: 16px;
            }

            .card-description {
                font-size: 12px;
                -webkit-line-clamp: 2;
            }

            .card-right {
                width: 100%;
                min-width: unset;
                border-left: none;
                border-top: 1px solid #f0f0f0;
                padding: 16px;
                flex-direction: row;
                gap: 8px;
                justify-content: space-between;
            }

            .phone-number {
                min-width: auto;
                padding: 10px 16px;
                font-size: 13px;
            }

            .contact-icons {
                gap: 8px;
            }

            .icon-btn {
                width: 44px;
                height: 44px;
            }

            .icon-btn svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 16px;
            }

            .page-title h1 {
                font-size: 22px;
            }

            .cards-container {
                gap: 12px;
            }

            .card-left {
                height: 160px;
            }

            .card-content {
                padding: 12px;
            }

            .card-title {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .card-description {
                font-size: 11px;
                -webkit-line-clamp: 2;
            }

            .card-right {
                padding: 12px;
                gap: 6px;
            }

            .phone-number {
                padding: 8px 12px;
                font-size: 12px;
            }

            .icon-btn {
                width: 40px;
                height: 40px;
            }

            .icon-btn svg {
                width: 18px;
                height: 18px;
            }

            .tag {
                padding: 4px 10px;
                font-size: 11px;
            }
        }

        /* Responsive Header */
        @media (max-width: 768px) {
            .header-top {
                padding: 12px 20px;
                flex-wrap: wrap;
            }

            .search-section {
                margin: 12px 0;
                max-width: 100%;
                order: 3;
                width: 100%;
            }

            .header-right {
                gap: 16px;
            }

            .breadcrumb {
                padding: 10px 20px;
            }

            .dropdown {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                display: none;
            }

            .search-section {
                flex-direction: column;
            }

            .header-right {
                gap: 12px;
            }

            .post-btn {
                padding: 8px 16px;
                font-size: 12px;
            }
        }


        /* Footer  */
          /* Footer Container */
        .footer {
            background-color: #1a0033;
            color: #FFFFFF;
            padding: 60px 40px 30px;
        }

        /* Footer Content Wrapper */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Logo Section */
        .footer-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            padding: 0 20px;
        }

        .footer-logo img {
            max-width: 120px;
            height: auto;
            object-fit: contain;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #FFD700;
            letter-spacing: 2px;
        }

        /* Links Section */
        .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-link {
            text-decoration: none;
            color: #FFFFFF;
            font-size: 14px;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .footer-link:hover {
            color: #FFD700;
        }

        .footer-link-separator {
            color: #FFD700;
            font-size: 14px;
        }

        /* Copyright Section */
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4B0082;
            font-size: 14px;
            color: #AAAAAA;
        }

        .footer-copyright p {
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer {
                padding: 50px 30px 25px;
            }

            .footer-logos {
                gap: 20px;
                margin-bottom: 40px;
            }

            .footer-logo {
                height: 70px;
                padding: 0 15px;
            }

            .footer-logo img {
                max-width: 100px;
            }

            .footer-links {
                gap: 30px;
                margin-bottom: 30px;
            }

            .footer-link {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 20px 20px;
            }

            .footer-logos {
                gap: 15px;
                margin-bottom: 30px;
                justify-content: center;
            }

            .footer-logo {
                height: 60px;
                padding: 0 10px;
            }

            .footer-logo img {
                max-width: 90px;
            }

            .footer-logo-text {
                font-size: 20px;
                letter-spacing: 1px;
            }

            .footer-links {
                gap: 20px;
                margin-bottom: 25px;
                flex-direction: column;
                align-items: center;
            }

            .footer-link {
                font-size: 12px;
            }

            .footer-link-separator {
                display: none;
            }

            .footer-copyright {
                padding-top: 20px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 16px 15px;
            }

            .footer-logos {
                gap: 10px;
                margin-bottom: 20px;
                flex-direction: column;
            }

            .footer-logo {
                height: 50px;
                padding: 0 8px;
                width: 100%;
            }

            .footer-logo img {
                max-width: 80px;
            }

            .footer-logo-text {
                font-size: 18px;
                letter-spacing: 0.5px;
            }

            .footer-links {
                gap: 12px;
                margin-bottom: 15px;
                flex-direction: column;
                align-items: center;
            }

            .footer-link {
                font-size: 11px;
            }

            .footer-copyright {
                padding-top: 15px;
                font-size: 11px;
            }

            .footer-copyright p {
                line-height: 1.4;
            }
        }
        /* Footer  */
   