/* BiCupid Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    color: #e74064;
}

h2 {
    font-size: 2rem;
    color: #e74064;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #e74064;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c8304f;
    text-decoration: underline;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Header and Navigation */
header {
    background-color: #e74064;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-nav {
    margin-left: 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #c8304f;
    text-decoration: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e74064;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #c8304f;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
}

.auth-nav {
    display: flex;
}

.auth-nav a {
    display: inline-block;
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.login-btn {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.login-btn:hover {
    background-color: rgba(255,255,255,0.1);
    text-decoration: none;
}

.signup-btn {
    color: #e74064;
    background-color: #fff;
    border: 1px solid #fff;
}

.signup-btn:hover {
    background-color: #f8f8f8;
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 1001;
    }
    
    .main-nav {
        margin-left: 0;
        width: 100%;
        display: none;
        background-color: #e74064;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 8px 8px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .main-nav ul li a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        display: none;
        background-color: rgba(0,0,0,0.1);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
    
    /* Hide desktop auth-nav on mobile */
    .auth-nav {
        display: none;
    }
    
    /* Add auth buttons to mobile menu */
    .main-nav ul::after {
        content: '';
        display: block;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 10px 0;
    }
    
    .mobile-auth-buttons {
        padding: 15px 20px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .mobile-auth-buttons .mobile-login-btn,
    .mobile-auth-buttons .mobile-signup-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 15px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-auth-buttons .mobile-login-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .mobile-auth-buttons .mobile-login-btn:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .mobile-auth-buttons .mobile-signup-btn {
        background-color: #fff;
        color: #e74064;
        border: 1px solid #fff;
    }
    
    .mobile-auth-buttons .mobile-signup-btn:hover {
         background-color: #f8f8f8;
     }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        right: 10px;
        top: 10px;
        padding: 10px;
    }
    
    .main-nav {
        margin-top: 10px;
    }
    
    .mobile-auth-buttons {
        padding: 10px 15px;
    }
    
    .mobile-auth-buttons .mobile-login-btn,
    .mobile-auth-buttons .mobile-signup-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    /* Ensure mobile menu doesn't interfere with page content */
    body.menu-open {
        overflow: hidden;
    }
    
    .main-nav.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

/* Hero Section */
.hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.bbw-hero {
    background-image: url('images/hero.jpg');
}

.bdsm-hero {
    background-image: url('images/bdsmhead.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-btn, .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74064;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover, .cta-button:hover {
    background-color: #c8304f;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e74064;
}

/* Features */
.features {
    background-color: #fff;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #e74064;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
}

/* Term Row and Feature Box in Row */
.term-row, .step-row {
    margin: 30px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
    align-items: stretch;
}

.term-row .feature-box, .term-row .term-box, .step-row .step-box {
    background-color: rgba(249, 244, 247, 0.7);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    text-align: left;
    margin-bottom: 0;
}

.term-row .feature-box:hover, .term-row .term-box:hover, .step-row .step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(249, 244, 247, 0.9);
}

.term-row .feature-box .feature-icon, .term-row .term-box .feature-icon {
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.term-row .feature-box .feature-content, .term-row .term-box .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.term-row .feature-content h4, .term-row .term-box h4 {
    font-size: 1rem;
    white-space: normal;
    overflow: visible;
    margin-bottom: 8px;
}

.term-row .feature-content p, .term-row .term-box p {
    font-size: 0.9rem;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    max-height: none;
}

/* Categories */
.categories {
    background-color: #f9f9f9;
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    margin-bottom: 10px;
}

/* How It Works */
.how-it-works {
    background-color: #fff;
}

.step-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #e74064;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    background-color: #f9f9f9;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-plan {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: #e74064;
    color: #fff;
}

.pricing-header h3 {
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Countries */
.countries {
    background-color: #fff;
}

.country-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.country-img {
    height: 150px;
    overflow: hidden;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-card:hover .country-img img {
    transform: scale(1.05);
}

.country-content {
    padding: 20px;
}

.country-content h3 {
    margin-bottom: 10px;
}

/* Featured Members */
.featured-members {
    background-color: #f9f9f9;
}

/* Swinger Featured Members */
.featured-members.swinger-profiles {
    background-color: #f8f4f7;
    padding: 70px 0;
}

.featured-members.swinger-profiles .profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for 3 cards in a row */
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.featured-members.swinger-profiles .member-card h3 {
    color: #d13a5e;
    font-size: 1.4rem;
    margin-top: 10px;
}

.featured-members.swinger-profiles .member-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
}

.member-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-img img {
    transform: scale(1.05);
}

.member-content {
    padding: 20px;
}

.member-content h3 {
    margin-bottom: 5px;
}

.member-info {
    color: #777;
    margin-bottom: 10px;
}

.member-bio {
    margin-bottom: 15px;
}

/* Dating Terms */
.dating-terms {
    background-color: #fff;
}

.term-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.term-box h3 {
    color: #e74064;
    margin-bottom: 10px;
}

/* Term Box in Term Row */
.term-row .term-box {
    background-color: rgba(249, 244, 247, 0.7);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: auto;
}

.term-row .term-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(249, 244, 247, 0.9);
}

.term-row .term-box h4 {
    font-size: 1rem;
    white-space: normal;
    overflow: visible;
    margin-bottom: 8px;
}

.term-row .term-box p {
    font-size: 0.9rem;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    max-height: none;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

/* Swinger Page Specific Styles */

/* Hero Section Customization */
.swinger-hero {
    background-image: url('images/swinger-hero.jpg');
    background-position: center 30%;
}

.swinger-hero .cta-button {
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
    background-color: #e74064;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.swinger-hero .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: #d13a5e;
}

/* Introduction Section */
.intro-section.swinger-intro {
    background-color: #f8f4f7;
    padding: 70px 0;
}

.intro-section.swinger-intro .intro-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-section.swinger-intro .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.intro-section.swinger-intro .section-title h2 {
    color: #d13a5e;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.intro-section.swinger-intro .intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d13a5e;
}

.intro-section.swinger-intro .feature-box {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.intro-section.swinger-intro .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.intro-section.swinger-intro .feature-icon {
    font-size: 2rem;
    margin-right: 15px;
    margin-bottom: 0;
    color: #e74064;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(231, 64, 100, 0.1);
    border-radius: 50%;
}

.intro-section.swinger-intro .feature-content {
    flex: 1;
}

.intro-section.swinger-intro .feature-content h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works.swinger-connect {
    background-color: #fff;
    padding: 70px 0;
}

.how-it-works.swinger-connect .term-box {
    background-color: #f9f4f7;
    border-left: 4px solid #e74064;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works.swinger-connect .term-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.how-it-works.swinger-connect .term-box h4 {
    color: #e74064;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.how-it-works.swinger-connect h3 {
    color: #d13a5e;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.how-it-works.swinger-connect .step-box {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 25px !important;
    transition: transform 0.3s ease !important;
    padding: 15px !important;
    border-radius: 8px !important;
    background-color: #f9f4f7 !important;
    flex-direction: row !important;
    text-align: left !important;
}

.how-it-works.swinger-connect .step-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.how-it-works.swinger-connect .step-number {
    background-color: #e74064;
    background-image: linear-gradient(135deg, #e74064, #c8304f);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.how-it-works.swinger-connect .step-content {
    flex: 1;
}

.how-it-works.swinger-connect .step-content h4 {
    color: #e74064;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Tips Section Updates */
.features.swinger-tips {
    background-color: #f8f4f7;
    padding: 70px 0;
}

.features.swinger-tips .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.features.swinger-tips .section-title h2 {
    color: #d13a5e;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features.swinger-tips .feature-box {
    display: block !important;
    text-align: center !important;
    padding: 30px 20px !important;
    margin-bottom: 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background-color: #fff !important;
}

.features.swinger-tips .feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.features.swinger-tips .feature-icon {
    font-size: 3rem !important;
    margin-right: 0 !important;
    color: #e74064 !important;
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    display: block !important;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 20px !important;
}

.features.swinger-tips .feature-content {
    flex: 1 !important;
    display: block !important;
    text-align: center !important;
}

.features.swinger-tips .feature-content h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
}

/* Safety Tips Section */
.features.swinger-tips .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.features.swinger-tips .safety-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features.swinger-tips .safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.features.swinger-tips .safety-card h3 {
    color: #d13a5e;
    border-bottom: 2px solid #d13a5e;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.features.swinger-tips .safety-card ul {
    list-style-type: none;
    padding-left: 0;
}

.features.swinger-tips .safety-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features.swinger-tips .safety-card li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d13a5e;
    position: absolute;
    left: 0;
}

/* Featured Profiles Section */
.featured-profiles.swinger-profiles {
    background-color: #f8f4f7;
    padding: 70px 0;
}

.featured-profiles.swinger-profiles .profile-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-profiles.swinger-profiles .profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.featured-profiles.swinger-profiles .profile-card h3 {
    color: #d13a5e;
    font-size: 1.4rem;
    margin-top: 20px;
}

.featured-profiles.swinger-profiles .interests span {
    background-color: #f9e9ee;
    color: #d13a5e;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.featured-profiles.swinger-profiles .interests span:hover {
    background-color: #e74064;
    color: #fff;
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section.swinger-faq {
    background-color: #fff;
    padding: 70px 0;
}

.faq-section.swinger-faq .faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-section.swinger-faq .faq-container {
    width: 100%;
}

.faq-section.swinger-faq .faq-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section.swinger-faq .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-section.swinger-faq .faq-question {
    background-color: #f9f4f7;
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section.swinger-faq .faq-question:after {
    content: '+';
    color: #e74064;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-section.swinger-faq .faq-question.active {
    background-color: #e74064;
    color: #fff;
}

.faq-section.swinger-faq .faq-question.active:after {
    content: '-';
    color: #fff;
    transform: rotate(180deg);
}

.faq-section.swinger-faq .faq-answer {
    padding: 20px 25px;
    background-color: #fff;
    border-left: 1px solid #f0e0e5;
    border-right: 1px solid #f0e0e5;
    border-bottom: 1px solid #f0e0e5;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-section.swinger-faq .faq-answer.show {
    display: block;
    max-height: 1000px;
}

/* CTA Section */
.cta-section.swinger-cta {
    background-color: #d13a5e;
    background-image: linear-gradient(135deg, #e74064, #c8304f);
    padding: 80px 0;
}

.cta-section.swinger-cta .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-section.swinger-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.cta-section.swinger-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.cta-section.swinger-cta .cta-button {
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
    background-color: #fff;
    color: #d13a5e;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-section.swinger-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: #f8f4f7;
}

/* Etiquette Section */
.section.etiquette-section {
    background-color: #fff;
    padding: 70px 0;
}

.etiquette-section .feature-box {
    display: block !important;
    text-align: center !important;
    padding: 30px 20px !important;
    margin-bottom: 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background-color: #fff !important;
}

.etiquette-section .feature-icon {
    font-size: 3rem !important;
    margin-right: 0 !important;
    color: #e74064 !important;
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    display: block !important;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 20px !important;
}

.etiquette-section .feature-content {
    flex: 1 !important;
    display: block !important;
    text-align: center !important;
}

.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.etiquette-card {
    background-color: #f9f4f7;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etiquette-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.etiquette-card h3 {
    color: #d13a5e;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #d13a5e;
    padding-bottom: 10px;
}

.etiquette-card ul {
    list-style-type: none;
    padding-left: 0;
}

.etiquette-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.etiquette-card li:before {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e74064;
    position: absolute;
    left: 0;
}

.testimonial-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-box::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #e74064;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #777;
    margin: 0;
}

/* FAQs */
.faqs, .faq-section {
    background-color: #fff;
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: #e74064;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-toggle {
    color: #e74064;
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    background-color: #fff;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    background-color: #e74064;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-white {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #e74064;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn-white:hover {
    background-color: #f8f8f8;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74064;
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #e74064;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #e74064;
    outline: none;
}

.form-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74064;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #c8304f;
}

.form-text {
    margin-top: 10px;
    color: #777;
    font-size: 0.9rem;
}

.form-link {
    color: #e74064;
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

/* Privacy & Terms */
.privacy-content,
.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.privacy-content h2,
.terms-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content h2:first-child,
.terms-content h2:first-child {
    margin-top: 0;
}

.privacy-content ul,
.terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 10px;
}

/* Intro Section */
.intro-section {
    background-color: #fff;
    padding: 60px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.intro-text h3 {
    color: #e74064;
    margin: 20px 0 15px;
}

.intro-text ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.intro-text li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.intro-text li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e74064;
    position: absolute;
    left: 0;
}

.intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Types Section */
.types-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.type-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.type-card h3 {
    color: #e74064;
    margin-bottom: 15px;
}

.choosing-guide {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.choosing-guide h3 {
    color: #e74064;
    margin-bottom: 15px;
}

/* Planning Section */
.planning-section {
    background-color: #fff;
    padding: 60px 0;
}

.planning-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.planning-step {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planning-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.planning-step h3 {
    color: #e74064;
    margin-bottom: 15px;
    border-bottom: 2px solid #e74064;
    padding-bottom: 10px;
}

.planning-step ul {
    list-style-type: none;
}

.planning-step li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.planning-step li:before {
    content: '\f0a4';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e74064;
    position: absolute;
    left: 0;
}

.planning-step li strong {
    color: #555;
}

/* Safety Section */
.safety-section {
    background-color: #fff;
    padding: 60px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.safety-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.safety-card h3 {
    color: #e74064;
    margin-bottom: 15px;
    border-bottom: 2px solid #e74064;
    padding-bottom: 10px;
}

.safety-card ul {
    list-style-type: none;
}

.safety-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.safety-card li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e74064;
    position: absolute;
    left: 0;
}

/* Featured Profiles */
.featured-profiles {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-card h3 {
    margin: 15px 20px 5px;
    color: #e74064;
}

.profile-card p {
    margin: 0 20px 10px;
    font-size: 0.95rem;
}

.profile-card p strong {
    color: #555;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 20px;
    gap: 8px;
}

.interests span {
    background-color: #f0f0f0;
    color: #e74064;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .featured-members.swinger-profiles .profiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .term-row {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .featured-members.swinger-profiles .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .term-row {
        gap: 8px;
    }
    
    .term-row .feature-box {
        padding: 12px;
    }
    
    .term-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px; /* 为滚动条留出空间 */
        -webkit-overflow-scrolling: touch;
    }
    
    .term-row .feature-box {
        min-width: 220px;
        flex: 0 0 auto;
        padding: 18px;
        margin-right: 5px;
    }
    
    .term-row .feature-content h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .term-row .feature-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 5;
        line-height: 1.5;
    }
    
    .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pricing-plan {
        flex: 0 0 calc(50% - 15px);
    }
    
    /* Responsive styles for term-row and term-box on medium screens */
    .term-row {
        gap: 10px;
    }
    
    .term-row .feature-box,
    .term-row .term-box {
        padding: 15px;
    }
    
    .term-row .feature-box .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    
    .term-row .feature-content h4,
    .term-row .term-box h4 {
        font-size: 0.98rem;
    }
    
    .term-row .feature-content p,
    .term-row .term-box p {
        font-size: 0.88rem;
        -webkit-line-clamp: 5;
    }
    
    /* Swinger Page Responsive */
    .intro-section.swinger-intro .feature-box {
        padding: 15px;
    }
    
    .intro-section.swinger-intro .feature-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .etiquette-grid,
    .features.swinger-tips .safety-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .term-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .term-row .feature-box,
    .term-row .term-box {
        min-width: 200px;
        flex: 0 0 auto;
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .term-row .feature-box .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .term-row .feature-content h4,
    .term-row .term-box h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .term-row .feature-content p,
    .term-row .term-box p {
        font-size: 0.85rem;
        -webkit-line-clamp: 6;
        line-height: 1.5;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .main-nav {
        display: none;
        width: 100%;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .auth-nav {
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pricing-plan {
        flex: 0 0 100%;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .profiles-grid,
    .types-grid,
    .planning-content,
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card,
    .type-card,
    .planning-step,
    .safety-card {
        margin-bottom: 20px;
    }
    
    .profile-card img {
        height: 200px;
    }
    
    /* Responsive styles for term-row and term-box */
    .term-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .term-row .feature-box,
    .term-row .term-box {
        min-width: 200px;
        flex: 0 0 auto;
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .term-row .feature-box .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .term-row .feature-content h4,
    .term-row .term-box h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .term-row .feature-content p,
    .term-row .term-box p {
        font-size: 0.85rem;
        -webkit-line-clamp: 6;
        line-height: 1.5;
    }
    
    /* Swinger Page Responsive */
    .intro-section.swinger-intro,
    .how-it-works.swinger-connect,
    .features.swinger-tips,
    .section.etiquette-section,
    .featured-profiles.swinger-profiles,
    .faq-section.swinger-faq {
        padding: 50px 0;
    }
    
    .intro-section.swinger-intro .intro-text h3 {
        font-size: 1.6rem;
    }
    
    .etiquette-grid,
    .features.swinger-tips .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section.swinger-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-section.swinger-cta p {
        font-size: 1rem;
    }
    
    .cta-section.swinger-cta .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .featured-members.swinger-profiles .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .term-row {
        padding-bottom: 10px;
        gap: 10px;
    }
    
    .term-row .feature-box {
        min-width: 180px;
        padding: 12px;
    }
    
    .term-row .feature-content h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .term-row .feature-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 7;
        line-height: 1.4;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn, .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .section,
    .featured-profiles,
    .safety-section,
    .planning-section,
    .types-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .profile-card h3,
    .safety-card h3,
    .planning-step h3,
    .type-card h3 {
        font-size: 1.3rem;
    }
    
    .interests {
        padding: 0 15px 15px;
    }
    
    .interests span {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    /* Responsive styles for term-row and term-box on small screens */
    .term-row {
        flex-direction: column;
        padding-bottom: 5px;
    }
    
    .term-row .feature-box,
    .term-row .term-box {
        min-width: 100%;
        margin: 0 0 15px 0;
        width: 100%;
        padding: 12px;
    }
    
    .term-row .feature-box .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .term-row .feature-box .feature-content,
    .term-row .term-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .term-row .feature-content h4,
    .term-row .term-box h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .term-row .feature-content p,
    .term-row .term-box p {
        font-size: 0.8rem;
        -webkit-line-clamp: 7;
        line-height: 1.4;
    }
    
    /* Swinger Page Responsive */
    .intro-section.swinger-intro,
    .how-it-works.swinger-connect,
    .features.swinger-tips,
    .section.etiquette-section,
    .featured-profiles.swinger-profiles,
    .faq-section.swinger-faq {
        padding: 40px 0;
    }
    
    .intro-section.swinger-intro .feature-box,
    .features.swinger-tips .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .intro-section.swinger-intro .feature-icon,
    .features.swinger-tips .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .term-row, .step-row {
        flex-direction: column;
    }
    
    .term-row .feature-box {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .term-row .feature-box .feature-content h4 {
        font-size: 1.2rem;
    }
    
    .term-row .feature-box .feature-content p {
        font-size: 1rem;
    }
}