 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff6b6b;
            --secondary: #4ecdc4;
            --accent: #ffd166;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --text: #333;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --pink: #ff7eb9;
            --purple: #d16ba5;
            --blue: #4361ee;
            --deep-pink: #e91e63;
            --gold: #ffb300;
            --header-font: 'Playfair Display', serif;
            --body-font: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: var(--body-font);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        /* Terms Modal */
        .terms-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow-y: auto;
            padding: 20px;
        }

        .terms-content {
            background: white;
            border-radius: 15px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            position: relative;
        }

        .terms-header {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: white;
            padding: 30px;
            border-radius: 15px 15px 0 0;
            text-align: center;
        }

            .terms-header h2 {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }

        .terms-body {
            padding: 30px;
            line-height: 1.8;
        }

        .terms-section {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

            .terms-section h3 {
                color: var(--dark);
                margin-bottom: 15px;
                font-size: 1.5rem;
            }

            .terms-section p {
                margin-bottom: 15px;
                color: #555;
            }

        .terms-footer {
            padding: 0 30px 30px;
            text-align: center;
        }

        .terms-agree {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            gap: 10px;
        }

            .terms-agree input {
                width: 20px;
                height: 20px;
            }

            .terms-agree label {
                font-weight: 500;
                color: var(--dark);
            }

        .terms-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }

            .terms-btn:hover {
                background: #ff5252;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            }

            .terms-btn:disabled {
                background: #ccc;
                cursor: not-allowed;
                transform: none;
                box-shadow: none;
            }

        /* Heart Animation */
        .hearts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .heart {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(255, 126, 185, 0.6);
            animation: float 8s linear infinite;
            opacity: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.7;
            }

            90% {
                opacity: 0.7;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Heart Animation Overlay */
        .heart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

            .heart-overlay.active {
                opacity: 1;
                pointer-events: auto;
            }

            .heart-overlay .heart-animation {
                font-size: 8rem;
                color: var(--primary);
                animation: pulse 1.5s ease-out;
                text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
            }

        @keyframes pulse {
            0% {
                transform: scale(0.5);
                opacity: 0.8;
                filter: brightness(1.5);
            }

            50% {
                transform: scale(1.2);
                opacity: 1;
                filter: brightness(2);
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
                filter: brightness(2.5);
            }
        }

        /* Header Styles */
        header {
            background: rgba(26, 26, 46, 0.95);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .scrolled {
            background: rgba(26, 26, 46, 0.98);
            padding: 0.8rem 5%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: var(--header-font);
        }

            .logo i {
                color: var(--primary);
                margin-right: 10px;
                font-size: 2rem;
                transition: var(--transition);
            }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-btn .bar {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: var(--transition);
        }

        /* Mobile Navigation - Left Side */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--dark);
            z-index: 1000;
            padding: 80px 20px 20px;
            transition: left 0.4s ease-in-out;
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav ul {
            flex-direction: column;
            gap: 15px;
            padding-top: 20px;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            display: block;
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
            font-size: 1.2rem;
            color: white;
            text-decoration: none;
            background: rgba(255,255,255,0.1);
        }

            .mobile-nav ul li a:hover {
                background: var(--primary);
                transform: translateX(5px);
            }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: white;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: block;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
        }

        .desktop-nav ul li {
            margin: 0 15px;
        }

        .desktop-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 30px;
            transition: var(--transition);
            font-family: var(--body-font);
        }

        .desktop-nav ul li a:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            color: white;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
       /* Increase contrast */
        .hero p, .testimonial-card p {
             color: #fff;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
            }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            font-family: var(--body-font);
        }

        #heroVideo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .btn-hero {
            background: var(--accent);
            color: var(--dark);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 30px;
            display: inline-block;
            transition: var(--transition);
            text-decoration: none;
            font-family: var(--body-font);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

            .btn-hero:hover {
                background: #ffc14d;
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(255, 209, 102, 0.3);
            }

        /* About Us Section */
        .about {
            padding: 100px 5%;
            background: white;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
            background: url('about.jpg') center/cover;
        }

        .about-text {
            flex: 1;
        }

            .about-text h2 {
                font-size: 2.5rem;
                color: var(--dark);
                margin-bottom: 20px;
            }

            .about-text p {
                margin-bottom: 20px;
                color: #555;
                line-height: 1.8;
                font-family: var(--body-font);
            }

        /* New Experience Section */
        .experiences {
            padding: 60px 0;
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .experience-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: var(--transition);
            position: relative;
            transform: translateY(0);
            border: 1px solid rgba(0,0,0,0.05);
        }

            .experience-card:hover {
                transform: translateY(-15px) scale(1.03);
                box-shadow: 0 20px 40px rgba(0,0,0,0.2);
                z-index: 2;
            }

        .exp-img {
            height: 500px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .exp-info {
            padding: 20px;
            text-align: center;
        }

            .exp-info h3 {
                margin-bottom: 10px;
                color: var(--dark);
                font-size: 1.5rem;
            }

            .exp-info p {
                color: #666;
                font-size: 0.95rem;
                font-family: var(--body-font);
            }

        /* Features Section */
        .features {
            padding: 100px 5%;
            background: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

            .section-title h2 {
                font-size: 2.5rem;
                color: var(--dark);
                margin-bottom: 15px;
            }

            .section-title p {
                color: #666;
                max-width: 700px;
                margin: 0 auto;
                font-family: var(--body-font);
            }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

            .feature-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
                background: linear-gradient(90deg, var(--pink), var(--purple));
            }

            .feature-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), #2a9d8f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            font-family: var(--body-font);
        }

        /* Profiles Section */
        .profiles {
            padding: 100px 5%;
            background: white;
        }

        .profiles-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .profile-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            position: relative;
            transform: translateY(0);
            border: 1px solid rgba(0,0,0,0.05);
        }

            .profile-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.15);
                z-index: 2;
            }

        .profile-img {
            height: 500px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .profile-info {
            padding: 25px;
            background: white;
        }

            .profile-info h3 {
                margin-bottom: 5px;
                color: var(--dark);
            }

            .profile-info p {
                color: #666;
                margin-bottom: 15px;
                font-family: var(--body-font);
            }

        .profile-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: var(--light);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #555;
            font-family: var(--body-font);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 5%;
            background: linear-gradient(135deg, #4ecdc4 0%, #2a9d8f 100%);
            color: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

            .testimonial-card:hover {
                transform: translateY(-10px);
                background: rgba(255, 255, 255, 0.15);
            }

            .testimonial-card p {
                font-style: italic;
                margin-bottom: 20px;
                font-family: var(--body-font);
            }

        .client {
            display: flex;
            align-items: center;
        }

        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            margin-right: 15px;
            border: 2px solid white;
        }

        .client-info h4 {
            margin-bottom: 5px;
        }

        .client-info p {
            font-family: var(--body-font);
        }

        /* Contact Section */
        .contact {
            padding: 100px 5%;
            background: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-partner {
            background: url('match.jpg') center/cover;
            border-radius: 15px;
            display: flex;
            align-items: flex-end;
            padding: 40px;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

            .contact-partner::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
            }

        .partner-content {
            position: relative;
            z-index: 2;
            color: white;
            width: 100%;
        }

            .partner-content h3 {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            .partner-content p {
                font-size: 1.2rem;
                margin-bottom: 30px;
                max-width: 500px;
                font-family: var(--body-font);
            }

        .partner-btn {
            background: var(--accent);
            color: var(--dark);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 30px;
            display: inline-block;
            transition: var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-family: var(--body-font);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

            .partner-btn:hover {
                background: #ffc14d;
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(255, 209, 102, 0.3);
            }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

            .info-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            }

            .info-card h3 {
                margin-bottom: 20px;
                color: var(--dark);
                font-size: 1.5rem;
            }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

            .info-item i {
                font-size: 1.5rem;
                color: var(--primary);
                margin-right: 15px;
                min-width: 30px;
            }

        .info-content h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }

        .info-content p {
            font-family: var(--body-font);
        }

        /* WhatsApp Chat Box */
        .whatsapp-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .chat-box {
            background: #25D366;
            color: white;
            border-radius: 50px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

            .chat-box:hover {
                background: #128C7E;
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
            }

            .chat-box i {
                font-size: 1.8rem;
                margin-right: 10px;
            }

            .chat-box span {
                font-weight: 600;
                font-size: 1.1rem;
                font-family: var(--body-font);
            }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

            .footer-col h3::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 3px;
                background: var(--primary);
            }

        .footer-col ul {
            list-style: none;
        }

            .footer-col ul li {
                margin-bottom: 15px;
            }

                .footer-col ul li a {
                    color: #ddd;
                    text-decoration: none;
                    transition: var(--transition);
                    font-family: var(--body-font);
                }

                    .footer-col ul li a:hover {
                        color: var(--accent);
                        padding-left: 5px;
                    }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }

            .stat-item .number {
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 5px;
                color: var(--accent);
            }

            .stat-item .label {
                font-size: 0.9rem;
                opacity: 0.8;
                font-family: var(--body-font);
            }

        .chat-now-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            margin-top: 20px;
        }

            .chat-now-box h4 {
                margin-bottom: 15px;
                font-size: 1.3rem;
            }

        .chat-now-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
            font-family: var(--body-font);
        }

            .chat-now-btn:hover {
                background: #ff5252;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-family: var(--body-font);
        }

        /* Gender Selection Modal */
        .gender-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .gender-modal.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .gender-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            position: relative;
        }
        
        .gender-content h3 {
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .gender-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .gender-btn {
            background: #f0f0f0;
            border: none;
            padding: 20px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .gender-btn:hover {
            background: #e0e0e0;
        }
        
        .gender-btn.selected {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        
        .gender-btn i {
            font-size: 2rem;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Close Button for Gender Modal */
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.8rem;
            background: transparent;
            border: none;
            cursor: pointer;
            color: #777;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .about-content {
                flex-direction: column;
            }

            .about-image {
                width: 100%;
            }

        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
             .profile-img{
                height: 900px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }
           
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero {
                text-align: center;
                margin-top: 1px;
            }

            .features-grid,
            .profiles-container,
            .testimonial-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-partner {
                min-height: 400px;
            }
            
            .exp-img {
                height: 495px;
            }
            
            .gender-options {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn-hero {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .contact-partner {
                min-height: 350px;
            }
            
            .exp-img {
                height: 495px;
            }
            
            .gender-btn {
                padding: 15px;
                font-size: 1rem;
            }
            
            .terms-content {
                width: 95%;
                max-height: 85vh;
            }
            .profile-img{
                height: 400px;
            }
            .terms-header {
                padding: 20px;
            }
            
            .terms-body {
                padding: 20px;
            }
            
            .terms-footer {
                padding: 0 20px 20px;
            }
        }