/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo a:hover {
    color: white;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-cta .btn-primary {
    background: #ffd700;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-hero {
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Unique Features Section */
.unique-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.unique-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.feature-item .feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.feature-item .feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-item .feature-icon svg path {
    fill: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #c44569;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b9d" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.why-choose-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    background: white;
    color: #333;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    border-color: #ff6b9d;
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-box .feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.feature-box .feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: #ff6b9d;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-box:hover p {
    color: #555;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: #c44569;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Top Countries Section */
.top-countries {
    padding: 80px 0;
    background: #f8f9fa;
}

.top-countries h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.country-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.country-item:hover {
    transform: translateY(-5px);
}

.country-item img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.country-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #c44569;
}

.country-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.pricing-table {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-table h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #c44569;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-option {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-option.popular {
    border-color: #ff6b9d;
    transform: scale(1.05);
}

.price-option:hover {
    border-color: #ff6b9d;
    transform: translateY(-3px);
}

.price-option h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #c44569;
    margin-bottom: 0.5rem;
}

.total {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-option p {
    color: #666;
    font-size: 0.9rem;
}

/* Sugar Daddy & Sugar Baby Sections */
.sugar-daddy-section,
.sugar-baby-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sugar-daddy-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sugar-baby-section {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
}

.sugar-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sugar-section-text {
    color: white;
}

.sugar-section-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.sugar-daddy-section h2 {
    color: #ffd700;
}

.sugar-baby-section h2 {
    color: #ff69b4;
}

.sugar-section-text .intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.sugar-section-text .cta-text {
    font-size: 1.3rem;
    color: white;
    margin: 2rem 0 1.5rem;
    font-weight: 600;
}

.sugar-section-text .cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sugar-daddy-section .cta-button {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
}

.sugar-baby-section .cta-button {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
}

.sugar-section-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
}

.benefits-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.benefits-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    color: #00d4aa;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Sugar Sections */
@media (max-width: 768px) {
    .sugar-daddy-section,
    .sugar-baby-section {
        padding: 60px 0;
    }
    
    .sugar-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .sugar-section-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .sugar-section-text .intro {
        text-align: center;
    }
    
    .sugar-section-text .cta-text {
        text-align: center;
    }
    
    .benefits-card {
        padding: 1.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.sugar-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff69b4" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ff1493" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff69b4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.sugar-terms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.sugar-terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 2px;
}

.terms-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.term-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.term-item:hover::before {
    transform: scaleX(1);
}

.term-item h3 {
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.term-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.term-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.terms-tips {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #ff69b4;
    position: relative;
}

.terms-tips h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f8, #ffe8f0);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: scale(1.05);
}

.tip-item h4 {
    font-size: 1.1rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tip-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Safety Tips Page Asymmetrical Styles for PC */
@media (min-width: 1024px) {
    .safety-tips-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .tip-section:nth-child(2) .tip-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin: 3rem 0;
    }
    
    .tip-section:nth-child(2) .tip-text {
        flex: 1;
        order: 1;
    }
    
    .tip-section:nth-child(3) .tip-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin: 3rem 0;
        flex-direction: row-reverse;
    }
    
    .tip-section:nth-child(3) .tip-text {
        flex: 1;
    }
    
    .tip-section:nth-child(4) .tip-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(4) .verification-checklist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .tip-section:nth-child(4) .verification-checklist h4:first-child {
        grid-column: 1;
    }
    
    .tip-section:nth-child(4) .verification-checklist h4:last-of-type {
        grid-column: 2;
    }
    
    .tip-section:nth-child(5) .tip-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin: 3rem 0;
    }
    
    .tip-section:nth-child(5) .tip-text {
        flex: 1;
        order: 1;
    }
    
    .tip-section:nth-child(6) .tip-content {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin: 3rem 0;
        flex-direction: row-reverse;
    }
    
    .tip-section:nth-child(6) .tip-text {
        flex: 1;
    }
    
    .tip-section:nth-child(7) .tip-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(8) .tip-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(9) .tip-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(10) .tip-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(11) .tip-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section:nth-child(12) .tip-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin: 3rem 0;
        align-items: start;
    }
    
    .tip-section {
        background: white;
        margin: 4rem 0;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }
    
    .tip-section:nth-child(even) {
        background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
        transform: translateX(2rem);
    }
    
    .tip-section:nth-child(odd) {
        background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
        transform: translateX(-2rem);
    }
    
    .tip-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ff69b4, #ff1493);
    }
    
    .tip-section:nth-child(even)::before {
        background: linear-gradient(90deg, #4169e1, #1e90ff);
    }
    
    .tip-section h3 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-weight: 700;
        position: relative;
    }
    
    .tip-section:nth-child(even) h3 {
        color: #1e3a8a;
    }
    
    .tip-section:nth-child(odd) h3 {
        color: #be185d;
    }
}

/* Mobile Responsiveness for Terms Section */
@media (max-width: 768px) {
    .sugar-terms-section {
        padding: 60px 0;
    }
    
    .sugar-terms-section h2 {
        font-size: 2rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .term-item {
        padding: 1.5rem;
    }
    
    .terms-tips {
        padding: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
}

/* Sugar Dating Terms Section */
.sugar-terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.sugar-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff69b4" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ff1493" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff69b4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.sugar-terms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.sugar-terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 2px;
}

.terms-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.term-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.term-item:hover::before {
    transform: scaleX(1);
}

.term-item h3 {
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.term-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.term-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.terms-tips {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #ff69b4;
    position: relative;
}

.terms-tips h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f8, #ffe8f0);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: scale(1.05);
}

.tip-item h4 {
    font-size: 1.1rem;
    color: #ff1493;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tip-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsiveness for Terms Section */
@media (max-width: 768px) {
    .sugar-terms-section {
        padding: 60px 0;
    }
    
    .sugar-terms-section h2 {
        font-size: 2rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .term-item {
        padding: 1.5rem;
    }
    
    .terms-tips {
        padding: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: #c44569;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #c44569;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff6b9d;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-large {
    background: #ffd700;
    color: #333;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-bottom h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #c44569;
}

/* Sugar Baby Page Styles */
.sugar-baby-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.sugar-baby-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.sugar-baby-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sugar-baby-hero .hero-content {
    color: white;
}

.sugar-baby-hero .hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: 700;
}

.sugar-baby-hero .hero-content h2 {
    font-size: 1.8rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.95;
}

.sugar-baby-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.sugar-baby-hero .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

.sugar-baby-hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    background: linear-gradient(45deg, #ffed4e, #fff59d);
}

.sugar-baby-hero .hero-image {
    text-align: center;
}

.sugar-baby-hero .hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.sugar-baby-hero .hero-image img:hover {
    transform: scale(1.05);
}

.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 80px;
    padding: 40px 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.05);
}

.meaning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.meaning-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meaning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.meaning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.comparison-table {
    margin: 50px 0;
}

.comparison-table h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reason-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.reason-item h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.reason-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.relationship-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.type-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.type-card li:last-child {
    border-bottom: none;
}

.key-factors {
    margin: 50px 0;
}

.key-factors h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.factors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.factor {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.factor strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

.characteristics-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.char-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.char-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.char-category ul {
    list-style: none;
    padding: 0;
}

.char-category li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.char-category li:last-child {
    border-bottom: none;
}

.char-category strong {
    color: #2c3e50;
}

.misconceptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.myth-fact {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.myth {
    background: #ff6b6b;
    color: white;
    padding: 20px;
}

.fact {
    background: #51cf66;
    color: white;
    padding: 20px;
}

.myth h4, .fact h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.platform-benefits {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.platform-benefits h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sign-category {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
    padding: 30px;
    border-radius: 15px;
}

.sign-category h3 {
    color: #c92a2a;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.sign-category ul {
    list-style: none;
    padding: 0;
}

.sign-category li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #ffe0e0;
}

.sign-category li:last-child {
    border-bottom: none;
}

.sign-category strong {
    color: #c92a2a;
}

.protection-tips {
    margin: 50px 0;
}

.protection-tips h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #51cf66;
}

.tip strong {
    color: #2b8a3e;
    display: block;
    margin-bottom: 8px;
}

.platform-features {
    margin: 40px 0;
}

.feature-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.feature-highlight h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.feature li:last-child {
    border-bottom: none;
}

.benefits-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-by-step {
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.step-content li:last-child {
    border-bottom: none;
}

.red-flags-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.flag-item {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
    padding: 30px;
    border-radius: 15px;
}

.flag-item h3 {
    color: #c92a2a;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.flag-item ul {
    list-style: none;
    padding: 0;
}

.flag-item li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #ffe0e0;
}

.flag-item li:last-child {
    border-bottom: none;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.final-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.final-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.final-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f8f9fa;
}

/* Sugar Baby Page Specific Styles */
body[data-page="sugar-baby"] .final-text p {
    color: #333;
}

body[data-page="sugar-baby"] .stat h3 {
    color: #333;
}

body[data-page="sugar-baby"] .stat p {
    color: #333;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.legal-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-hero .last-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.terms-intro, .privacy-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.terms-intro h2, .privacy-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.terms-intro p, .privacy-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #c44569;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 69, 105, 0.1);
}

.highlight-item h3 {
    color: #c44569;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-section, .privacy-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #c44569;
}

.terms-section h3, .privacy-section h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-section h4, .privacy-section h4 {
    color: #c44569;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.terms-section ul, .privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li, .privacy-section li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.terms-section p, .privacy-section p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.terms-footer, .privacy-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid #e9ecef;
}

.effective-date {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.legal-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 4rem;
}

.legal-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.legal-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Section Styles */
.trust-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 4rem 0;
}

.trust-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-hero .hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #c44569;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-details p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hours, .response-time {
    color: #c44569 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-button {
    background: #c44569;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.chat-button:hover {
    background: #a73c5a;
    transform: scale(1.05);
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c44569;
    box-shadow: 0 0 0 3px rgba(196, 69, 105, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 69, 105, 0.3);
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #c44569;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.support-categories {
    padding: 80px 0;
    background: white;
}

.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.categories-header p {
    font-size: 1.1rem;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-category {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-category:hover {
    border-color: #c44569;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-category h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-category p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.category-link {
    display: inline-block;
    background: #c44569;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #a73c5a;
    transform: scale(1.05);
}

.response-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.response-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.response-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.response-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.response-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.response-item p {
    color: #c44569;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-cta {
    background: linear-gradient(135deg, #c44569 0%, #ff6b9d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #c44569;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white;
    color: #c44569;
    transform: scale(1.05);
}

/* Responsive Design for Legal and Contact Pages */
@media (max-width: 768px) {
    .legal-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 250px;
    }
    
    .methods-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-section,
    .privacy-section {
        padding: 1.5rem;
    }
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.stat p {
    font-size: 0.9rem;
    color: #f8f9fa;
    margin: 0;
}

.final-cta {
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.final-cta p {
    margin-bottom: 30px;
    color: #f8f9fa;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 18px 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #e9ecef;
    margin: 0;
}

/* Mobile Responsiveness for Sugar Baby Page */
@media (max-width: 768px) {
    .sugar-baby-hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .sugar-baby-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .sugar-baby-hero .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .sugar-baby-hero .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }
    
    .sugar-baby-hero .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .sugar-baby-hero .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .sugar-baby-hero .hero-image img {
        max-width: 400px;
        border-radius: 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .final-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .content-section {
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sugar-baby-hero {
        min-height: 75vh;
        padding: 90px 0 50px;
    }
    
    .sugar-baby-hero .container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .sugar-baby-hero .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .sugar-baby-hero .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .sugar-baby-hero .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .sugar-baby-hero .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .sugar-baby-hero .hero-image img {
        max-width: 320px;
        border-radius: 12px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b9d;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #ff6b9d;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff8fb3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b9d, #c44569);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-us h2 {
        font-size: 2.2rem;
    }
    
    .feature-box {
        padding: 2rem;
        gap: 1rem;
    }
    
    .feature-box .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-box .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .unique-features,
    .why-choose-us,
    .success-stories,
    .about-section,
    .top-countries,
    .pricing-section,
    .faq-section,
    .blog-section,
    .final-cta {
        padding: 60px 0;
    }
    
    .feature-item,
    .feature-box,
    .testimonial,
    .country-item,
    .pricing-table,
    .blog-post {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hover Effects */
.feature-item,
.feature-box,
.testimonial,
.country-item,
.price-option,
.blog-post {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6b9d;
    outline-offset: 2px;
}

/* Features Page Styles */
.features-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.promo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.promo-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-steps h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.core-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
}

.premium-badge {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.verification-stats,
.support-stats {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.global-stats {
    margin-top: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.stat-row:last-child {
    border-bottom: none;
}

.dating-features {
    padding: 100px 0;
    background: white;
}

.dating-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dating-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dating-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.dating-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dating-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.dating-section.reverse {
    direction: rtl;
}

.dating-section.reverse > * {
    direction: ltr;
}

.section-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.section-content h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.date-categories {
    display: grid;
    gap: 2rem;
}

.category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.category ul {
    list-style: none;
    padding: 0;
}

.category li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.category li:before {
    content: "♦";
    position: absolute;
    left: 0;
    color: #ff6b9d;
}

.gift-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.gift-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gift-table th,
.gift-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.gift-table th {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    font-weight: 600;
}

.gift-table tr:hover {
    background: #f8f9fa;
}

.gift-tips {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.gift-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gift-tips ul {
    list-style: none;
    padding: 0;
}

.gift-tips li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.gift-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

.safety-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.safety-header {
    text-align: center;
    margin-bottom: 4rem;
}

.safety-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.safety-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.safety-content {
    max-width: 1200px;
    margin: 0 auto;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.safety-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.safety-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.safety-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.safety-tips ul {
    list-style: none;
    padding: 0;
}

.safety-tips li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.safety-tips li:before {
    content: "🔒";
    position: absolute;
    left: 0;
}

.safety-resources {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.safety-resources h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.resource-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.premium-benefits {
    padding: 100px 0;
    background: white;
}

.premium-header {
    text-align: center;
    margin-bottom: 4rem;
}

.premium-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.premium-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    margin-bottom: 4rem;
    overflow-x: auto;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.membership-table th,
.membership-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.membership-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.membership-table tr:hover {
    background: #f8f9fa;
}

.membership-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.premium-pricing {
    max-width: 1200px;
    margin: 0 auto;
}

.premium-pricing h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 3px solid #ff6b9d;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.bonus {
    background: #e8f5e8;
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
}

.success-stories {
    padding: 100px 0;
    background: #f8f9fa;
}

.stories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stories-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stories-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2.5rem;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.features-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 1rem;
}

/* Responsive Design for Features Page */
@media (max-width: 1024px) {
    .dating-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dating-section.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .promo-header h2 {
        font-size: 2rem;
    }
    
    .features-header h2,
    .dating-header h2,
    .safety-header h2,
    .premium-header h2,
    .stories-header h2 {
        font-size: 2.2rem;
    }
    
    .section-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .safety-card,
    .pricing-card {
        padding: 2rem;
    }
    
    .promo-steps {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .gift-table {
        font-size: 0.9rem;
    }
    
    .membership-table th,
    .membership-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-hero-content h1 {
        font-size: 2rem;
    }
    
    .promo-header h2 {
        font-size: 1.8rem;
    }
    
    .features-header h2,
    .dating-header h2,
    .safety-header h2,
    .premium-header h2,
    .stories-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .safety-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
        text-align: center;
    }
}

/* Login Page Styles */
.login-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}

.login-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.login-forms {
    padding: 100px 0;
    background: #f8f9fa;
}

.forms-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-home-link {
    margin-top: 2rem;
    text-align: center;
}

.btn-home {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.form-group small {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
}

.form-group {
    position: relative;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.forgot-link {
    color: #ff6b9d;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login,
.btn-signup {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-login:hover,
.btn-signup:hover {
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.switch-form {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
}

.switch-form:hover {
    text-decoration: underline;
}

.importance-section {
    padding: 100px 0;
    background: white;
}

.importance-header {
    text-align: center;
    margin-bottom: 4rem;
}

.importance-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.importance-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.importance-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.importance-card:hover {
    transform: translateY(-5px);
}

.importance-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.importance-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.importance-card p {
    color: #666;
    line-height: 1.6;
}

.signup-steps {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.steps-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-tips,
.step-requirements,
.step-note,
.step-examples,
.photo-guidelines,
.verification-benefits {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.step-tips strong,
.step-requirements strong,
.step-note strong,
.step-examples strong,
.photo-guidelines strong,
.verification-benefits strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.step-tips ul,
.step-requirements ul,
.step-examples ul,
.photo-guidelines ul,
.verification-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-tips li,
.step-requirements li,
.step-examples li,
.photo-guidelines li,
.verification-benefits li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.step-tips li:before,
.step-requirements li:before,
.step-examples li:before,
.photo-guidelines li:before,
.verification-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.issues-section {
    padding: 100px 0;
    background: white;
}

.issues-header {
    text-align: center;
    margin-bottom: 4rem;
}

.issues-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.issues-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.issues-category {
    margin-bottom: 3rem;
}

.issues-category h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.issues-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.issues-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.issues-table th,
.issues-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.issues-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
}

.issues-table tr:hover {
    background: #f8f9fa;
}

.security-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.security-header {
    text-align: center;
    margin-bottom: 4rem;
}

.security-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.security-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.security-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.security-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-tips ul {
    list-style: none;
    padding: 0;
}

.security-tips li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.security-tips li:before {
    content: "🔒";
    position: absolute;
    left: 0;
}

.password-example {
    background: #e3f2fd;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-family: monospace;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff6b9d;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.login-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-cta-large,
.btn-secondary-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-cta-large {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-large:hover,
.btn-secondary-large:hover {
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    color: #000;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Responsive Design for Login Page */
@media (max-width: 1024px) {
    .forms-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .login-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .importance-header h2,
    .steps-header h2,
    .issues-header h2,
    .security-header h2,
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .form-section {
        padding: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-large,
    .btn-secondary-large {
        width: 200px;
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .login-hero-content h1 {
        font-size: 2rem;
    }
    
    .importance-header h2,
    .steps-header h2,
    .issues-header h2,
    .security-header h2,
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .importance-card,
    .security-card {
        padding: 2rem;
    }
    
    .issues-table {
        font-size: 0.9rem;
    }
    
    .issues-table th,
    .issues-table td {
        padding: 0.75rem;
    }
}

/* About Page Specific Styles */
[data-page="about"] .about-hero {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

[data-page="about"] .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

[data-page="about"] .about-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

[data-page="about"] .about-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

[data-page="about"] .content-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

[data-page="about"] .content-section:last-child {
    border-bottom: none;
}

[data-page="about"] .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

[data-page="about"] .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

[data-page="about"] .content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

[data-page="about"] .text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

[data-page="about"] .image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission Section */
[data-page="about"] .mission-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

[data-page="about"] .mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

[data-page="about"] .mission-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

[data-page="about"] .mission-point h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b9d;
}

/* Vision Section */
[data-page="about"] .vision-goals ul {
    list-style: none;
    margin-top: 2rem;
}

[data-page="about"] .vision-goals li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

[data-page="about"] .vision-goals li:last-child {
    border-bottom: none;
}

[data-page="about"] .vision-goals strong {
    color: #ff6b9d;
}

/* Timeline Styles */
[data-page="about"] .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

[data-page="about"] .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b9d, #c44569);
    transform: translateX(-50%);
}

[data-page="about"] .timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

[data-page="about"] .timeline-item:nth-child(odd) {
    flex-direction: row;
}

[data-page="about"] .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

[data-page="about"] .timeline-year {
    background: #ff6b9d;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

[data-page="about"] .timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 45%;
    margin-left: auto;
    margin-right: auto;
}

[data-page="about"] .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

[data-page="about"] .timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

[data-page="about"] .timeline-content h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Values Grid */
[data-page="about"] .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

[data-page="about"] .value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

[data-page="about"] .value-card:hover {
    transform: translateY(-5px);
}

[data-page="about"] .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

[data-page="about"] .value-card h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Users Section */
[data-page="about"] .user-type {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

[data-page="about"] .user-type:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

[data-page="about"] .user-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

[data-page="about"] .user-description h3 {
    color: #ff6b9d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

[data-page="about"] .user-description ul {
    margin-top: 1.5rem;
}

[data-page="about"] .user-description li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

[data-page="about"] .user-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
}

/* Steps Container */
[data-page="about"] .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

[data-page="about"] .step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

[data-page="about"] .step-number {
    background: #ff6b9d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

[data-page="about"] .step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Features Grid */
[data-page="about"] .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

[data-page="about"] .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .feature-item h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Comparison Table */
[data-page="about"] .comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

[data-page="about"] .comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .comparison-table th {
    background: #ff6b9d;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: bold;
}

[data-page="about"] .comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

[data-page="about"] .comparison-table tr:last-child td {
    border-bottom: none;
}

[data-page="about"] .comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Security Section */
[data-page="about"] .security-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

[data-page="about"] .security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

[data-page="about"] .security-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .security-item h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

[data-page="about"] .safety-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .safety-tips h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

[data-page="about"] .safety-tips ul {
    list-style: none;
}

[data-page="about"] .safety-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

[data-page="about"] .safety-tips li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

/* Services Grid */
[data-page="about"] .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

[data-page="about"] .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

[data-page="about"] .service-card:hover {
    transform: translateY(-5px);
}

[data-page="about"] .service-card h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Guidelines Section */
[data-page="about"] .guidelines-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

[data-page="about"] .guideline-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .guideline-category h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

[data-page="about"] .guideline-category ul {
    list-style: none;
}

[data-page="about"] .guideline-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

[data-page="about"] .guideline-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
}

/* Testimonials Grid */
[data-page="about"] .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

[data-page="about"] .testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="about"] .testimonial-content {
    margin-bottom: 1.5rem;
}

[data-page="about"] .testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

[data-page="about"] .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

[data-page="about"] .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

[data-page="about"] .author-info h5 {
    color: #ff6b9d;
    margin-bottom: 0.25rem;
}

[data-page="about"] .author-info span {
    color: #777;
    font-size: 0.9rem;
}

/* FAQ Section */
[data-page="about"] .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

[data-page="about"] .faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

[data-page="about"] .faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

[data-page="about"] .faq-question:hover {
    background: #e9ecef;
}

[data-page="about"] .faq-question h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

[data-page="about"] .faq-toggle {
    font-size: 1.5rem;
    color: #ff6b9d;
    font-weight: bold;
    transition: transform 0.3s ease;
}

[data-page="about"] .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

[data-page="about"] .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-page="about"] .faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

[data-page="about"] .faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
[data-page="about"] .cta-section {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

[data-page="about"] .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

[data-page="about"] .cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

[data-page="about"] .cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

[data-page="about"] .benefit {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}

[data-page="about"] .cta-button.large {
    background: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

[data-page="about"] .cta-button.large:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

[data-page="about"] .cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    [data-page="about"] .about-hero h1 {
        font-size: 2rem;
    }
    
    [data-page="about"] .about-hero h2 {
        font-size: 1.2rem;
    }
    
    [data-page="about"] .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    [data-page="about"] .user-type {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    [data-page="about"] .timeline::before {
        left: 30px;
    }
    
    [data-page="about"] .timeline-year {
        left: 30px;
        transform: translateX(-50%);
    }
    
    [data-page="about"] .timeline-item {
        flex-direction: row !important;
    }
    
    [data-page="about"] .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    [data-page="about"] .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    [data-page="about"] .section-header h2 {
        font-size: 2rem;
    }
    
    [data-page="about"] .cta-content h2 {
        font-size: 2rem;
    }
}

/* Safety Tips Page Styles */
[data-page="safety-tips"] .safety-hero {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

[data-page="safety-tips"] .safety-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

[data-page="safety-tips"] .safety-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

[data-page="safety-tips"] .safety-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

[data-page="safety-tips"] .hero-image {
    max-width: 500px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

[data-page="safety-tips"] .hero-image:hover {
    transform: scale(1.05);
}

[data-page="safety-tips"] .safety-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

[data-page="safety-tips"] .intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

[data-page="safety-tips"] .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

[data-page="safety-tips"] .intro-image {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.2);
    transition: transform 0.3s ease;
}

[data-page="safety-tips"] .intro-image:hover {
    transform: translateY(-5px);
}

[data-page="safety-tips"] .platform-safety {
    padding: 4rem 0;
    background: white;
}

[data-page="safety-tips"] .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

[data-page="safety-tips"] .feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

[data-page="safety-tips"] .feature-item:hover {
    border-color: #ff6b9d;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

[data-page="safety-tips"] .feature-item h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

[data-page="safety-tips"] .platform-note {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    margin-top: 2rem;
    font-style: italic;
}

[data-page="safety-tips"] .safety-tips-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

[data-page="safety-tips"] .tip-section {
    background: white;
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

[data-page="safety-tips"] .tip-section h3 {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
}

[data-page="safety-tips"] .tip-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

[data-page="safety-tips"] .tip-content:nth-child(even) {
    grid-template-columns: 320px 1fr;
}

[data-page="safety-tips"] .tip-content:nth-child(even) .tip-image {
    order: -1;
}

[data-page="safety-tips"] .tip-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

[data-page="safety-tips"] .tip-text p {
    margin-bottom: 1.5rem;
    color: #333;
}

[data-page="safety-tips"] .tip-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

[data-page="safety-tips"] .tip-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

[data-page="safety-tips"] .tip-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

[data-page="safety-tips"] .tip-image:hover {
    transform: scale(1.03);
    border-color: #ff6b9d;
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.25);
}

[data-page="safety-tips"] .safety-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

[data-page="safety-tips"] .safety-table th,
[data-page="safety-tips"] .safety-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

[data-page="safety-tips"] .safety-table th {
    background: #ff6b9d;
    color: white;
    font-weight: 600;
}

[data-page="safety-tips"] .safety-table tr:hover {
    background: #f8f9fa;
}

[data-page="safety-tips"] .verification-checklist {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

[data-page="safety-tips"] .verification-checklist h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

[data-page="safety-tips"] .verification-checklist ul {
    margin: 0;
    padding-left: 1.5rem;
}

[data-page="safety-tips"] .verification-checklist li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

[data-page="safety-tips"] .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .safe-locations,
[data-page="safety-tips"] .avoid-locations {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

[data-page="safety-tips"] .safe-locations {
    border-left: 4px solid #28a745;
}

[data-page="safety-tips"] .avoid-locations {
    border-left: 4px solid #dc3545;
}

[data-page="safety-tips"] .safety-checklist {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    margin: 1rem 0;
}

[data-page="safety-tips"] .boundaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .boundary-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid #ff6b9d;
}

[data-page="safety-tips"] .boundary-type h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
}

[data-page="safety-tips"] .financial-warnings {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
}

[data-page="safety-tips"] .financial-warnings h4 {
    color: #856404;
    margin-bottom: 1rem;
}

[data-page="safety-tips"] .privacy-tips {
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .privacy-tips h4 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

[data-page="safety-tips"] .red-flags-list {
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .red-flags-list h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

[data-page="safety-tips"] .platform-tools {
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .platform-tools h4 {
    color: #007bff;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

[data-page="safety-tips"] .sobriety-guidelines {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

[data-page="safety-tips"] .instinct-guidance {
    background: #d1ecf1;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #17a2b8;
    margin: 1rem 0;
}

[data-page="safety-tips"] .agreement-guidelines {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

[data-page="safety-tips"] .transition-timeline {
    margin: 1.5rem 0;
}

[data-page="safety-tips"] .timeline-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

[data-page="safety-tips"] .timeline-table th,
[data-page="safety-tips"] .timeline-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

[data-page="safety-tips"] .timeline-table th {
    background: #6c757d;
    color: white;
    font-weight: 600;
}

[data-page="safety-tips"] .transport-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

[data-page="safety-tips"] .transport-table th,
[data-page="safety-tips"] .transport-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

[data-page="safety-tips"] .transport-table th {
    background: #28a745;
    color: white;
    font-weight: 600;
}

[data-page="safety-tips"] .resources-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

[data-page="safety-tips"] .safety-faq {
    padding: 4rem 0;
    background: white;
}

[data-page="safety-tips"] .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

[data-page="safety-tips"] .faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

[data-page="safety-tips"] .faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

[data-page="safety-tips"] .faq-question:hover {
    background: #f8f9fa;
}

[data-page="safety-tips"] .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    flex: 1;
}

[data-page="safety-tips"] .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

[data-page="safety-tips"] .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

[data-page="safety-tips"] .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

[data-page="safety-tips"] .faq-answer p {
    padding: 1.5rem;
    margin: 0;
    background: #f8f9fa;
    color: #555;
    line-height: 1.6;
}

[data-page="safety-tips"] .safety-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    text-align: center;
}

[data-page="safety-tips"] .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

[data-page="safety-tips"] .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

[data-page="safety-tips"] .cta-button {
    display: inline-block;
    background: white;
    color: #ff6b9d;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

[data-page="safety-tips"] .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

[data-page="safety-tips"] .cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

[data-page="safety-tips"] .cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for Safety Tips */
@media (max-width: 768px) {
    [data-page="safety-tips"] .safety-hero h1 {
        font-size: 2rem;
    }
    
    [data-page="safety-tips"] .safety-hero h2 {
        font-size: 1.2rem;
    }
    
    [data-page="safety-tips"] .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    [data-page="safety-tips"] .tip-content,
    [data-page="safety-tips"] .tip-content:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    [data-page="safety-tips"] .tip-image,
    [data-page="safety-tips"] .tip-content:nth-child(even) .tip-image {
        order: -1;
        max-width: 100%;
        height: 180px;
        margin: 0 auto;
    }
    
    [data-page="safety-tips"] .hero-image {
        max-width: 100%;
        height: 250px;
    }
    
    [data-page="safety-tips"] .intro-image {
        height: 200px;
    }
    
    [data-page="safety-tips"] .location-grid {
        grid-template-columns: 1fr;
    }
    
    [data-page="safety-tips"] .boundaries-grid {
        grid-template-columns: 1fr;
    }
    
    [data-page="safety-tips"] .feature-grid {
        grid-template-columns: 1fr;
    }
    
    [data-page="safety-tips"] .safety-table,
    [data-page="safety-tips"] .timeline-table,
    [data-page="safety-tips"] .transport-table {
        font-size: 0.85rem;
    }
    
    [data-page="safety-tips"] .safety-table th,
    [data-page="safety-tips"] .safety-table td,
    [data-page="safety-tips"] .timeline-table th,
    [data-page="safety-tips"] .timeline-table td,
    [data-page="safety-tips"] .transport-table th,
    [data-page="safety-tips"] .transport-table td {
        padding: 0.5rem;
    }
    
    [data-page="safety-tips"] .cta-content h2 {
        font-size: 2rem;
    }
}

/* Features Header Styles */
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-icon {
    margin-bottom: 1rem;
}

.features-icon svg {
    display: block;
    margin: 0 auto;
}

/* Flags Container Styles */
.flags-container {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.green-flags, .red-flags {
    flex: 1;
}

.green-flags h4 {
    color: #28a745;
}

.red-flags h4 {
    color: #dc3545;
}

/* Centered Content Styles */
.centered-content .tip-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.centered-text {
    text-align: center;
}

.centered-checklist {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* Three Column Tips */
.three-column-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.column-tip {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.column-tip h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Responsive Design for New Layouts */
@media (max-width: 768px) {
    .flags-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .three-column-tips {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-header {
        margin-bottom: 2rem;
    }
    
    .features-icon svg {
        width: 80px;
        height: 80px;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-cta,
    .btn-hero,
    .btn-cta-large,
    .btn-secondary,
    .final-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}