/* 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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

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

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

.logo a:hover {
    color: #c0392b;
    text-decoration: none;
}

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

.nav {
    display: flex;
    position: static;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    z-index: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

.nav-list li {
    width: auto;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline;
    padding: 0;
    border-bottom: none;
}

.nav-list a:hover {
    color: #e74c3c;
    background: transparent;
    padding-left: 0;
}

.nav-list a.active {
    color: #e74c3c;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 2rem;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .nav-list a:hover {
        background-color: #f8f9fa;
        color: #e74c3c;
    }
    
    /* Removed duplicate .nav-list.active rule - now using .nav.active */
    }
    
    .header-cta .btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 200px 0 80px;
    margin-top: 180px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* PC端专用：为hero区域H1添加额外的顶部间距 */
@media (min-width: 769px) {
    .hero .hero-text h1 {
        padding-top: 100px;
    }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

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

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

.why-card h3,
.why-card p {
    padding: 0 1.5rem;
}

.why-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    padding-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.step h3 {
    margin-top: 30px;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

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

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

.step h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Millionaire Dating Section */
.millionaire-dating {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Blog Layout for Articles with Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.essential-item,
.tip-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.essential-item:last-child,
.tip-item:last-child {
    border-bottom: none;
}

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

.related-articles li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.related-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-articles a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-articles a:hover {
    color: #e74c3c;
}

.related-articles img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    float: left;
}

.text-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.benefits {
    margin-top: 2rem;
}

.benefits h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

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

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

/* Who Joins Section */
.who-joins {
    padding: 80px 0;
    background: #fff;
}

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

.join-type {
    text-align: center;
}

.join-type img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* Featured Profiles Section */
.featured-profiles {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.disclaimer {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.profiles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

.profile-info {
    padding: 1rem;
}

.verified-badge {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.verified-badge.certified {
    background: #f39c12;
}

.profile-info h4 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.interests {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

/* Top Regions Section */
.top-regions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.region-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

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

.region-card h3,
.region-card p {
    padding: 0 1.5rem;
}

.region-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.region-card p {
    padding-bottom: 1.5rem;
}

/* Verification Section */
.verification {
    padding: 80px 0;
    background: #fff;
}

.verification-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.verification-type {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.badge-icon.verified {
    background: #27ae60;
}

.badge-icon.certified {
    background: #f39c12;
}

.why-matters {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.why-matters h3 {
    color: white;
    margin-bottom: 1rem;
}

.why-matters p {
    color: white;
    margin-bottom: 0;
}

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

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.success-stories .story-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.story-card h3,
.story-card p {
    padding: 0 1.5rem;
}

.story-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.story-card p {
    padding-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

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

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

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 2rem;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    display: none;
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #dee2e6;
}

.faq-item.active p {
    display: block;
}

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

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

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

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

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

.blog-card h3,
.blog-card p,
.blog-card .read-more {
    padding: 0 1.5rem;
}

.blog-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-card p {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 1.5rem;
    transition: color 0.3s ease;
}

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

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-links,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-apps {
    display: flex;
    gap: 1rem;
}

.app-badge {
    background: #34495e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.app-badge:hover {
    background: #4a6741;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-cta .btn {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile - Increased spacing */
    .header {
        padding: 10px 0;
    }
    
    .nav-wrapper {
        padding: 1.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        max-height: 0;
        transition: max-height 0.3s ease;
        z-index: 9999;
        overflow: hidden;
        margin-top: 10px;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
        margin: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-list a:hover {
        background: #f8f9fa;
        padding-left: 10px;
        color: #e74c3c;
    }

    .header-cta .btn {
        display: none;
    }

    /* Hero Mobile - Increased top padding for header spacing */
    .hero {
        padding: 120px 0 60px;
        margin-top: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }
    
    /* Mobile Image Optimization - Prevent overflow */
    .hero-image img,
    .why-card img,
    .step img,
    .feature-card img,
    .profile-card img,
    .blog-card img,
    .related-card img,
    .reason-card img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    /* Story card images for non-success-stories sections */
    .story-card img:not(.success-stories .story-card img) {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    /* Specific mobile image heights */
    .hero-image img {
        height: 250px;
        max-height: 250px;
    }
    
    .why-card img {
        height: 180px;
        max-height: 180px;
    }
    
    .step img {
        height: 160px;
        max-height: 160px;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Sections Mobile */
    .features,
    .why-choose,
    .how-it-works,
    .millionaire-dating,
    .who-joins,
    .featured-profiles,
    .about,
    .top-regions,
    .verification,
    .success-stories,
    .faq,
    .blog,
    .final-cta {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* 移动端millionaire-dating部分图片放在内容下方 */
    .millionaire-dating {
        padding: 25px 0;
        background: #f8f9fa;
    }
    
    .millionaire-dating .container {
        padding: 0 8px;
        max-width: 100%;
    }
    
    .millionaire-dating .content-wrapper {
        grid-template-areas: 
            "text"
            "image";
        gap: 0.8rem;
        background: white;
        border-radius: 15px;
        padding: 20px 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .millionaire-dating .text-content {
        grid-area: text;
        padding: 0;
        text-align: center;
    }
    
    .millionaire-dating .text-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
        line-height: 1.15;
        text-align: center;
        font-weight: 700;
        color: #2c3e50;
    }
    
    .millionaire-dating .text-content p {
        font-size: 0.88rem;
        line-height: 1.35;
        margin-bottom: 0.9rem;
        text-align: center;
        color: #555;
    }
    
    .millionaire-dating .benefits {
        margin-top: 0.9rem;
        text-align: center;
    }
    
    .millionaire-dating .benefits h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        text-align: center;
        font-weight: 600;
        color: #e74c3c;
    }
    
    .millionaire-dating .benefits ul {
        padding-left: 0;
        list-style: none;
        display: inline-block;
        text-align: left;
        margin: 0;
    }
    
    .millionaire-dating .benefits li {
        font-size: 0.82rem;
        padding: 0.15rem 0;
        line-height: 1.25;
        position: relative;
        padding-left: 1.2rem;
        color: #444;
    }
    
    .millionaire-dating .benefits li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #e74c3c;
        font-weight: bold;
    }

    .millionaire-dating .image-content {
        grid-area: image;
        margin: 0;
        padding-top: 0.5rem;
    }
    
    .millionaire-dating .image-content img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        object-fit: cover;
    }

    .join-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }

    .verification-types {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links,
    .footer-legal {
        justify-content: center;
    }

    .footer-apps {
        justify-content: center;
    }

    /* Sticky CTA Mobile */
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens optimization */
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .hero {
        padding: 110px 0 50px;
        margin-top: 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }

    .profile-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .profile-card img {
        height: 140px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Further image optimization for very small screens */
    .hero-image img {
        height: 200px;
        max-height: 200px;
    }
    
    .why-card img {
        height: 150px;
        max-height: 150px;
    }
    
    .step img {
        height: 140px;
        max-height: 140px;
    }
    
    /* Ensure no horizontal overflow */
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.why-card,
.step,
.story-card,
.blog-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
}

.legal-content h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #555;
}

.legal-notice {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    padding: 60px 0;
    background: white;
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-details p {
    margin: 8px 0;
    color: #555;
}

.contact-details strong {
    color: #e74c3c;
}

.contact-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    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: #e74c3c;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

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

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

.category-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.category-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.category-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.contact-info {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list,
.response-list,
.specialized-list {
    space-y: 10px;
}

.hour-item,
.response-item,
.specialized-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child,
.response-item:last-child,
.specialized-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child,
.response-item span:first-child,
.specialized-item span:first-child {
    color: #2c3e50;
    font-weight: 600;
}

.hour-item span:last-child,
.response-item span:last-child,
.specialized-item span:last-child {
    color: #e74c3c;
    font-weight: 600;
}

/* Cookie Preferences Styles */
.cookie-controls {
    margin: 30px 0;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cookie-category h4 {
    color: #2c3e50;
    margin: 0;
}

.cookie-category p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #e74c3c;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.toggle-switch.disabled .slider {
    background-color: #e74c3c;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #bbb;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Safety Page Styles */
.safety-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.safety-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.safety-hero .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.safety-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #ecf0f1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image img:hover {
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Online Safety Section */
.online-safety {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
}

.safety-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

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

.safety-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.safety-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Security Features Table */
.security-features {
    padding: 80px 0;
    background: white;
}

.features-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.security-table th {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

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

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

.security-table tr:last-child td {
    border-bottom: none;
}

/* Offline Safety Section */
.offline-safety {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.safety-guidelines h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.guideline-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* Privacy Protection Section */
.privacy-protection {
    padding: 80px 0;
    background: white;
}

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

.privacy-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.privacy-card h3 {
    padding: 30px 30px 20px;
    color: #2c3e50;
    margin: 0;
    font-size: 1.5rem;
}

.privacy-tips {
    padding: 0 30px 30px;
}

.privacy-tips h4 {
    color: #34495e;
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.privacy-tips ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.privacy-tips li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.privacy-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Red Flags Section */
.red-flags {
    padding: 80px 0;
    background: #f8f9fa;
}

.warning-categories {
    margin-top: 3rem;
}

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

.warning-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

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

.warning-item {
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warning-item.high-risk {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.warning-item.medium-risk {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, #fffbf0, #ffffff);
}

.warning-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Action Steps Section */
.action-steps {
    padding: 80px 0;
    background: white;
}

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

.action-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.action-header {
    position: relative;
    overflow: hidden;
}

.action-header h3 {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
    margin: 0;
    font-size: 1.5rem;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.action-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.action-steps-list {
    padding: 30px;
}

.action-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.action-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Safety Resources Section */
.safety-resources {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.resource-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

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

.resource-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.5;
}

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

.resource-card strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Safety CTA Section */
.safety-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

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

.safety-cta p {
    font-size: 1.2rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Safety Page */
@media (max-width: 1200px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .safety-hero h1 {
        font-size: 3rem;
    }
    
    .safety-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 2.5rem auto 0;
    }
    
    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .safety-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .safety-hero {
        padding: 120px 0 80px;
    }
    
    .safety-hero h1 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #e74c3c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .safety-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 2rem auto 0;
    }
    
    .stat-item {
        padding: 25px 20px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
        letter-spacing: 1.2px;
        line-height: 1.4;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .hero-image img {
        height: 350px;
        border-radius: 20px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .safety-card {
        padding: 30px;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .action-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .safety-hero {
        padding: 100px 0 70px;
    }
    
    .safety-hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .safety-stats {
        gap: 15px;
        max-width: 350px;
        margin: 1.5rem auto 0;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-image img {
        height: 300px;
        border-radius: 15px;
    }
    
    .safety-cta h2 {
        font-size: 2rem;
    }
    
    .safety-cta p {
        font-size: 1rem;
    }
}

/* App Page Styles */
.app-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.app-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.app-hero p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.app-store-btn,
.google-play-btn {
    display: block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-3px);
}

.app-store-btn img,
.google-play-btn img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* App Overview */
.app-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.overview-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
}

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

.audience-category {
    text-align: center;
}

.audience-category img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #e74c3c;
}

.audience-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.audience-category ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.audience-category li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #666;
}

.audience-category li:before {
    content: "✓";
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

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

.comparison-table td:nth-child(2) {
    color: #27ae60;
}

.comparison-table td:nth-child(3) {
    color: #e74c3c;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.step {
    text-align: center;
    position: relative;
}

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

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* App Features */
.app-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-detailed.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-detailed.reverse .feature-content {
    order: 2;
}

.feature-detailed.reverse .feature-image {
    order: 1;
}

.feature-detailed h3 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-detailed ul {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-detailed li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.feature-detailed li strong {
    color: #2c3e50;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Additional Features */
.additional-features {
    padding: 80px 0;
}

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

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

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

.feature-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Featured Members */
.featured-members {
    padding: 80px 0;
    background: #f8f9fa;
}

.members-grid {
    margin-top: 3rem;
}

.member-category {
    margin-bottom: 60px;
}

.member-category h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-card h4 {
    color: #2c3e50;
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.member-card p {
    color: #666;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.verified-badge {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* App Screenshots */
.app-screenshots {
    padding: 80px 0;
}

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

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

.screenshot-item img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.screenshot-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

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

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 30px;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    display: none;
    margin-top: 1rem;
    color: #666;
}

.faq-item.active p {
    display: block;
}

/* Download CTA */
.download-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

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

.download-cta p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 3rem 0;
}

.download-buttons .app-store-btn,
.download-buttons .google-play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.download-buttons .app-store-btn:hover,
.download-buttons .google-play-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ecf0f1;
    font-size: 1rem;
}

.cta-promise {
    color: #ecf0f1;
    font-style: italic;
    margin-top: 2rem;
}

/* Responsive Design for App Page */
@media (max-width: 1024px) {
    .app-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-detailed {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .feature-detailed.reverse .feature-content,
    .feature-detailed.reverse .feature-image {
        order: unset;
    }
    
    .audience-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 100px 0 60px;
    }
    
    .app-hero h1 {
        font-size: 2.2rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-grid,
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile table styles for better display */
    .comparison-table-wrapper {
        overflow-x: auto;
        margin: 0 -15px;
        padding: 0 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .comparison-table {
        min-width: 600px;
        width: 100%;
    }
    
    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        white-space: nowrap;
        min-width: 120px;
        text-align: left;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 140px;
        position: sticky;
        left: 0;
        background: white;
        z-index: 2;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .comparison-table th:first-child {
        background: #2c3e50;
        color: white;
    }
    
    /* Add scroll indicator for mobile tables */
    .why-choose .container::after {
        content: "← Swipe to see more →";
        display: block;
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        margin-top: 10px;
        font-style: italic;
    }
    
    .member-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons .app-store-btn,
    .download-buttons .google-play-btn {
        width: 200px;
        justify-content: center;
    }
    
    .download-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .app-hero h1 {
        font-size: 1.8rem;
    }
    
    .feature-detailed {
        padding: 30px 20px;
    }
    
    .overview-card,
    .feature-card {
        padding: 30px 20px;
    }
    
    .member-cards {
        grid-template-columns: 1fr;
    }
    
    .app-store-btn img,
    .google-play-btn img {
        height: 50px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: #ecf0f1;
    font-size: 1rem;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Timeline Styles */
.our-history {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.timeline-year {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex: 1;
}

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

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Platform Features */
.platform-features {
    padding: 80px 0;
}

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

.feature-category {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-category img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #e74c3c;
}

.feature-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-category ul {
    list-style: none;
    text-align: left;
}

.feature-category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
}

.feature-category li:before {
    content: "✓";
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
}

/* Development & Innovation */
.development-innovation {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.innovation-card h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.tech-tag {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.ux-improvements {
    margin-top: 1.5rem;
}

.improvement-item {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #666;
}

.improvement-item strong {
    color: #2c3e50;
}

.innovation-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Our Members */
.our-members {
    padding: 80px 0;
}

.member-demographics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 3rem;
}

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

.demographics-table th,
.demographics-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.demographics-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.demographics-table td:nth-child(2) {
    color: #e74c3c;
    font-weight: bold;
}

.success-profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

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

.profile-card h4 {
    color: #2c3e50;
    margin: 1rem 1.5rem 0.5rem;
}

.profile-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

/* What Makes Different */
.what-makes-different {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

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

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

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

.comparison-table td:nth-child(2) {
    color: #27ae60;
}

.comparison-table td:nth-child(3) {
    color: #e74c3c;
}

.unique-advantages {
    margin-top: 4rem;
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advantage-item.reverse {
    grid-template-columns: 2fr 1fr;
}

.advantage-item.reverse .advantage-content {
    order: 1;
}

.advantage-item.reverse img {
    order: 2;
}

.advantage-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.advantage-content h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.advantage-content p {
    color: #666;
    line-height: 1.6;
}

/* Current Status */
.current-status {
    padding: 80px 0;
}

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

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

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

.status-card h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.stat-label {
    color: #666;
}

.stat-value {
    color: #2c3e50;
    font-weight: bold;
}

.recognition-list,
.developments-list {
    margin-top: 1rem;
}

.recognition-item,
.development-item {
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.recognition-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.recognition-item p {
    color: #666;
    margin: 0;
}

.dev-date {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.development-item p {
    color: #666;
    margin: 0;
    display: inline;
}

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

.pricing-intro {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.pricing-plans {
    margin-top: 4rem;
}

.pricing-category {
    margin-bottom: 80px;
}

.pricing-category h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

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

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

.plan-card.best-deal {
    border: 3px solid #27ae60;
}

.popular-badge,
.deal-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.popular-badge {
    background: #e74c3c;
}

.deal-badge {
    background: #27ae60;
}

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

.price {
    margin-bottom: 1rem;
}

.weekly-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.period {
    color: #666;
    font-size: 1.2rem;
}

.billing-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.savings {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
}

.plan-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.plan-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.plan-button:hover {
    background: #c0392b;
}

/* Platinum Membership */
.pricing-category.platinum {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
}

.pricing-category.platinum h3 {
    color: white;
}

.platinum-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platinum-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.platinum-header h4 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platinum-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
}

.platinum-subtitle {
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 2rem;
}

.platinum-features {
    text-align: left;
    margin: 2rem 0;
}

.feature-section {
    margin-bottom: 2rem;
}

.feature-section h5 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.feature-section li {
    padding: 8px 0;
    color: #ecf0f1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-section li:before {
    content: "★";
    color: #f39c12;
    margin-right: 10px;
}

.platinum-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

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

.platinum-note {
    color: #ecf0f1;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.platinum-benefits img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.benefits-content h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ecf0f1;
}

.benefit-item strong {
    color: #f39c12;
}

/* Pricing Guarantee */
.pricing-guarantee {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 4rem;
    text-align: center;
}

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

.guarantee-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.5rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

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

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

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

.reason-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #e74c3c;
}

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

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

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.about-cta .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    text-align: left;
}

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

.cta-content p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-primary {
    background: white;
    color: #e74c3c;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.cta-assurance {
    color: #ecf0f1;
    font-style: italic;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .member-demographics {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantage-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .advantage-item.reverse .advantage-content,
    .advantage-item.reverse img {
        order: unset;
    }
    
    .platinum-plan {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-cta .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-year::before {
        display: none;
    }
    
    .features-overview,
    .innovation-grid,
    .status-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .guarantee-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-category.platinum {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .timeline-content,
    .feature-category,
    .innovation-card,
    .status-card,
    .reason-card {
        padding: 30px 20px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .platinum-card {
        padding: 30px 20px;
    }
    
    .pricing-guarantee {
        padding: 40px 20px;
    }
    
    .comparison-table th,
    .comparison-table td,
    .demographics-table th,
    .demographics-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Blog Article Pages Styles */
.article-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: 80px;
    text-align: center;
}

.article-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Image Section */
.hero-image-section {
    padding: 0;
    margin-bottom: 60px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 60px 40px 40px;
    color: white;
}

.overlay-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.article-subtitle {
    color: #ecf0f1;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    color: #ecf0f1;
    font-size: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    font-size: 1.2rem;
    color: #e74c3c;
}

.article-content {
    background: white;
    padding: 60px 0;
    line-height: 1.8;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e74c3c;
    font-weight: 600;
}

.article-content h3 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.article-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-content ul li {
    list-style-type: none;
    position: relative;
}

.article-content ul li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #2c3e50;
    border-radius: 0 8px 8px 0;
}

/* Table wrapper for horizontal scrolling */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    position: relative;
}

.article-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.article-content th,
.article-content td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.article-content th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.article-content td {
    color: #555;
    font-size: 1rem;
}

.article-content tr:hover {
    background: #f8f9fa;
}

.article-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #ecf0f1;
    margin-bottom: 1rem;
}

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

.tip-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.tip-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #555;
    margin-bottom: 0;
}

.related-articles {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.related-articles h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

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

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

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

.related-card-content {
    padding: 1.5rem;
}

.related-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

/* Mobile Responsive for Article Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 900px;
        grid-template-columns: 3fr 1fr;
        gap: 30px;
    }
    
    .sidebar {
        top: 80px;
    }
    
    .sidebar-widget {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 120px 0 60px;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .sidebar {
        position: static;
        order: 2;
        padding: 20px 0 0;
        background: transparent;
    }
    
    .main-content {
        order: 1;
    }
    
    .article-content {
        padding: 40px 0;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }
    
    .article-content h3 {
        font-size: 1.5rem;
    }
    
    .article-content h4 {
        font-size: 1.3rem;
    }
    
    .article-content p,
    .article-content li {
        font-size: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile table styles with swipe indicator */
    .table-wrapper {
        margin: 2rem -15px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }
    
    .table-wrapper::after {
        content: "← Swipe to see more →";
        display: block;
        text-align: center;
        color: #666;
        font-size: 0.85rem;
        padding: 8px;
        background: #f8f9fa;
        font-style: italic;
        border-top: 1px solid #e9ecef;
    }
    
    .article-content table {
        font-size: 0.9rem;
        min-width: 500px;
        border-radius: 0;
    }
    
    .article-content th,
    .article-content td {
        padding: 10px 12px;
        white-space: nowrap;
    }
    
    .article-content th:first-child,
    .article-content td:first-child {
        position: sticky;
        left: 0;
        background: inherit;
        z-index: 2;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .article-content th:first-child {
        background: #2c3e50;
        color: white;
    }
    
    /* Mobile styles for all blog table types */
    .comparison-table,
    .dress-code-table,
    .timeline-table {
        margin: 2rem -15px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .comparison-table::after,
    .dress-code-table::after,
    .timeline-table::after {
        content: "← Swipe to see more →";
        display: block;
        text-align: center;
        color: #666;
        font-size: 0.85rem;
        padding: 8px;
        background: #f8f9fa;
        font-style: italic;
        border-top: 1px solid #e9ecef;
    }
    
    .scenario-table,
    .conversation-table,
    .integration-table,
    .pressure-response-table,
    .metrics-table,
    .networking-table,
    .timing-table,
    .gift-guidelines-table {
        font-size: 0.9rem;
        min-width: 500px;
        border-radius: 0;
        width: 100%;
        border-collapse: collapse;
    }
    
    .scenario-table th,
    .scenario-table td,
    .conversation-table th,
    .conversation-table td,
    .integration-table th,
    .integration-table td,
    .pressure-response-table th,
    .pressure-response-table td,
    .metrics-table th,
    .metrics-table td,
    .networking-table th,
    .networking-table td,
    .timing-table th,
    .timing-table td,
    .gift-guidelines-table th,
    .gift-guidelines-table td {
        padding: 10px 12px;
        white-space: nowrap;
    }
    
    .scenario-table th:first-child,
    .scenario-table td:first-child,
    .conversation-table th:first-child,
    .conversation-table td:first-child,
    .integration-table th:first-child,
    .integration-table td:first-child,
    .pressure-response-table th:first-child,
    .pressure-response-table td:first-child,
    .metrics-table th:first-child,
    .metrics-table td:first-child,
    .networking-table th:first-child,
    .networking-table td:first-child,
    .timing-table th:first-child,
    .timing-table td:first-child,
    .gift-guidelines-table th:first-child,
    .gift-guidelines-table td:first-child {
        position: sticky;
        left: 0;
        background: inherit;
        z-index: 2;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .scenario-table th:first-child,
    .conversation-table th:first-child,
    .integration-table th:first-child,
    .pressure-response-table th:first-child,
    .metrics-table th:first-child,
    .networking-table th:first-child,
    .timing-table th:first-child,
    .gift-guidelines-table th:first-child {
        background: #2c3e50;
        color: white;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Blog Article Mobile Layout */
    .blog-article .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-article .sidebar {
        position: static;
        order: 2;
        margin-top: 30px;
        padding-top: 0;
    }
    
    .blog-article .main-content {
        order: 1;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .blog-article .main-content {
        padding: 20px;
        border-radius: 8px;
    }
    
    .article-content {
        padding: 0;
    }
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.4rem;
    }
    
    .tip-card,
    .highlight-box {
        padding: 1rem;
    }
    
    .related-card-content {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .related-article {
        padding: 8px;
    }
    
    .related-article img {
        width: 50px;
        height: 50px;
    }
    
    .related-content h4 {
        font-size: 0.9rem;
    }
    
    .related-content p {
        font-size: 0.8rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 140px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.blog-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.blog-hero p {
    color: #ecf0f1;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-articles,
.latest-articles {
    padding: 80px 0;
}

.featured-articles {
    background: #f8f9fa;
}

.featured-articles h2,
.latest-articles h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-card.featured {
    border: 2px solid #e74c3c;
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.date {
    color: #666;
    font-weight: 500;
}

.article-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 600;
}

.article-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #e74c3c;
}

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

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

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

.newsletter-signup {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-content p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #e74c3c;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #e74c3c;
    font-weight: 500;
}

/* Stats Grid for Articles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    display: block;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Content Wrapper for Articles */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    
    gap: 40px;
    padding: 0 20px;
    align-items: start;
}

.main-content {
    padding: 0;
    min-width: 0;
}

/* Sidebar Styles */
.sidebar {
    padding: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.sidebar-widget h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.quick-guide {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
    transition: all 0.3s ease;
}

.guide-step:hover {
    background: #fff5f5;
    transform: translateX(5px);
}

.step-num {
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-article:hover {
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-content h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.related-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    color: #2c3e50;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
    font-weight: 500;
}

.quick-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip {
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* Blog Article Specific Styles */
.blog-article .content-wrapper {
    max-width: 1200px;
    align-items: start;
}

.blog-article .main-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 0;
}

.blog-article .article-content {
    padding: 0;
}

.blog-article .sidebar {
    margin-top: 0;
    padding-top: 0;
}

/* Ensure images display correctly */
.content-section img,
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
    display: block;
}

.article-header .article-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto 0;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
    position: relative;
}

.content-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.content-section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.content-section h3 {
    color: #34495e;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.lead {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #3498db;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
}

.image-content {
    margin: 3rem 0;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 700px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Benefits Grid Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.benefit-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    filter: grayscale(0);
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Article Image Optimization */
.article-header .article-image {
    margin: 2rem auto;
    text-align: center;
    max-width: 600px;
}

.article-header .article-image img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.article-header .article-image img:hover {
    transform: scale(1.02);
}

/* Content Image Styles */
.content-section .image-content {
    text-align: center;
    margin: 2rem 0;
}

.content-section .image-content img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Verification Process Styles */
.verification-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    background: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* FAQ Styles */
.faq-section {
    margin: 3rem 0;
}

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #e74c3c;
}

/* Table Styles for Verification */
.verification-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.verification-table th,
.verification-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.verification-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.verification-table td {
    color: #555;
}

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

.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-verified {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-required {
    background: #f8d7da;
    color: #721c24;
}

/* Mobile Responsive for Blog Pages */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .article-header {
        padding: 80px 0 30px;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .article-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-section {
        margin-bottom: 40px;
    }
    
    .hero-image-wrapper {
        height: 350px;
        border-radius: 0 0 15px 15px;
    }
    
    .overlay-content h2 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.2rem;
        padding: 2rem;
    }
    
    .image-content img {
        height: 300px;
        max-width: 100%;
    }
    
    .featured-articles,
    .latest-articles,
    .newsletter-signup {
        padding: 60px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .article-header .article-image {
        margin: 1.5rem auto;
        max-width: 100%;
    }
    
    .article-header .article-image img {
        max-width: 350px;
        height: 180px;
    }
    
    .content-section .image-content img {
        max-width: 350px;
        height: 150px;
    }
    
    .verification-steps {
        padding: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .verification-table {
        font-size: 0.9rem;
    }
    
    .verification-table th,
    .verification-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .featured-articles h2,
    .latest-articles h2,
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .article-header {
        padding: 60px 0 20px;
    }
    
    .article-hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
    }
    
    .article-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image-section {
        margin-bottom: 30px;
    }
    
    .hero-image-wrapper {
        height: 250px;
        border-radius: 0 0 10px 10px;
    }
    
    .image-overlay {
        padding: 30px 20px 20px;
    }
    
    .overlay-content h2 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .content-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .image-content img {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .article-header .article-image {
        margin: 1rem auto;
    }
    
    .article-header .article-image img {
        max-width: 300px;
        height: 140px;
    }
    
    .content-section .image-content img {
        max-width: 300px;
        height: 110px;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .verification-steps {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* App Store Buttons */
.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.app-store-btn:hover,
.google-play-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.store-icon {
    font-size: 24px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-text strong {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .sticky-cta,
    .mobile-menu-toggle {
        display: none;
    }

    .hero,
    .app-hero,
    .about-hero {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}