/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.nav-link:hover {
    color: #e2725b;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #b33d3d;
    color: white;
}

.btn-primary:hover {
    background: #9a3232;
    transform: translateY(-1px);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-cta {
    background: #b33d3d;
    color: white;
    padding: 14px 32px;
    font-size: 18px;
}

.btn-cta:hover {
    background: #9a3232;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('../img/banner.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 8%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Trust Stats Section */
.trust-stats {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.trust-stats h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

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

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

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #2d5a4a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

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

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
    color: white;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.about-image img {
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: #e8a87c;
    margin: 0 5%;
    border-radius: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h2 {
    font-size: 28px;
    color: #333;
}

.cta-content p {
    font-size: 18px;
    color: #444;
    margin-top: 5px;
}

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

.top-choice h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.top-choice-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.top-choice-card h3 {
    font-size: 22px;
    color: #e2725b;
    margin-bottom: 15px;
    font-weight: 600;
}

.top-choice-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.feature-card {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #e8a87c;
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
}

.feature-card:hover p,
.feature-card:hover h3 {
    color: white;
}

/* Silver Singles Introduction Section */
.silver-intro {
    padding: 80px 0;
    background: #e2725b;
}

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

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #ffffff;
}

.success-stories h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.story-card {
    padding: 30px;
    border-radius: 12px;
    color: white;
    position: relative;
    background: linear-gradient(135deg, #e2725b 0%, #c9604a 100%);
}

.story-card-image {
    background: #e2725b;
}

.story-card-image .story-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.story-card-green {
    background: #2d5a4a;
}

.story-card-dark {
    background: #2c2c2c;
}

.story-card-image-2 {
    background: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=senior%20couple%20drinking%20coffee%20cafe%20cozy%20atmosphere&image_size=portrait_4_3') center/cover no-repeat;
}

.story-card-image-2 .story-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.story-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    opacity: 0.8;
}

.author-title {
    font-size: 14px;
    opacity: 0.8;
}

/* Dating Resources Section */
.dating-resources {
    padding: 80px 0;
    background: #ffffff;
}

.dating-resources h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.resource-section {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 12px;
}

.resource-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
}

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

.tips-list strong {
    color: #e2725b;
}

.types-list {
    list-style: none;
}

.types-list li {
    padding: 10px 0;
}

.types-list a {
    font-size: 16px;
    color: #2d5a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.types-list a:hover {
    color: #e2725b;
    text-decoration: underline;
}

/* Download App Section */
.download-app {
    padding: 80px 0;
    background: #2d5a4a;
}

.app-content {
    text-align: center;
    color: white;
}

.app-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon svg {
    width: 100%;
    height: 100%;
}

.app-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-store {
    font-size: 12px;
    opacity: 0.7;
}

.app-name {
    font-size: 16px;
    font-weight: 600;
}

.app-btn-android {
    background: #414141;
    color: white;
}

.app-btn-android .app-store {
    opacity: 0.8;
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: #f5f5f5;
}

.signup-content {
    text-align: center;
}

.signup-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.signup-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: #e2725b;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

.forgot-link {
    color: #e2725b;
    text-decoration: none;
    font-size: 14px;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 100px;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.modal-footer a {
    color: #e2725b;
    text-decoration: none;
    font-weight: 600;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 14px;
}

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

.footer-bottom .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-bottom .logo-icon {
    font-size: 20px;
}

.footer-bottom .logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-bottom .logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Base font size for mobile - increased for seniors */
    body {
        font-size: 20px;
        line-height: 1.7;
    }
    
    /* Header */
    .header {
        padding: 15px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 17px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Trust Stats */
    .trust-stats {
        padding: 40px 0;
    }
    
    .trust-stats h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    /* About Section */
    .about {
        padding: 50px 0;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .about-text {
        min-width: 100%;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 10px;
    }
    
    /* CTA Section */
    .cta {
        padding: 40px 20px;
        margin: 0 3%;
        margin-top: -30px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .btn-cta {
        padding: 14px 30px;
        font-size: 18px;
    }
    
    /* Top Choice Section */
    .top-choice {
        padding: 50px 0;
    }
    
    .top-choice h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
    .top-choice-grid {
        gap: 20px;
    }
    
    .top-choice-card {
        padding: 25px;
    }
    
    .top-choice-card h3 {
        font-size: 20px;
    }
    
    .top-choice-card p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Features Section */
    .features {
        padding: 50px 0;
    }
    
    .features h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-card h3 {
        font-size: 22px;
    }
    
    .feature-card p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Silver Intro Section */
    .silver-intro {
        padding: 50px 0;
    }
    
    .intro-content h2 {
        font-size: 26px;
    }
    
    .intro-content p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    /* Success Stories */
    .success-stories {
        padding: 50px 0;
    }
    
    .success-stories h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .story-card p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Dating Resources */
    .dating-resources {
        padding: 50px 0;
    }
    
    .dating-resources h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-section {
        padding: 25px;
    }
    
    .resource-section h3 {
        font-size: 22px;
    }
    
    .tips-list li,
    .types-list li {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Download App Section */
    .download-app {
        padding: 50px 0;
    }
    
    .app-content h2 {
        font-size: 28px;
    }
    
    .app-content p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .app-btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 25px;
    }
    
    /* Signup Section */
    .signup {
        padding: 50px 0;
    }
    
    .signup-content h2 {
        font-size: 28px;
    }
    
    .signup-content p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    /* Modal */
    .modal {
        padding-top: 80px;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 26px;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 16px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    body {
        font-size: 19px;
        line-height: 1.7;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 100%;
    }
    
    .trust-stats h2 {
        font-size: 24px;
    }
    
    .about-text h2,
    .features h2,
    .success-stories h2,
    .dating-resources h2,
    .signup-content h2,
    .intro-content h2 {
        font-size: 22px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .cta {
        margin: 0 2%;
        margin-top: -25px;
    }
    
    .story-card {
        padding: 15px;
    }
}

/* Silver Singles USA Page Styles */

/* Sub Header */
.sub-header {
    background: #f9e4d9;
    padding: 20px 0;
}

.sub-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-header h1 {
    font-size: 28px;
    color: #333;
}

/* Hero Over 50 Section */
.hero-over50 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=happy%20senior%20couple%20over%2050%20walking%20in%20beautiful%20garden%20golden%20years%20romantic&image_size=landscape_16_9') center/cover;
}

/* Hero Black Section */
.hero-black {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=beautiful%20sunset%20over%20african%20american%20community%20gathering%20warm%20colors&image_size=landscape_16_9') center/cover;
}

/* Hero Christian Section */
.hero-christian {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=beautiful%20church%20interior%20with%20stained%20glass%20windows%20peaceful%20sunlight&image_size=landscape_16_9') center/cover;
}

/* Hero Australia Section */
.hero-australia {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=senior%20couple%20on%20australian%20golden%20beach%20sunset%20ocean%20romantic%20atmosphere&image_size=landscape_16_9') center/cover;
}

/* Hero Canada Section */
.hero-canada {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=senior%20couple%20in%20canadian%20mountains%20banff%20national%20park%20romantic%20sunset&image_size=landscape_16_9') center/cover;
}

/* Hero UK Section */
.hero-uk {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/senior-dating-uk.jpg') center/cover;
}

/* Hero USA Section */
.hero-usa {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=senior%20couple%20sitting%20on%20couch%20together%20cozy%20living%20room%20warm%20atmosphere&image_size=landscape_16_9') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.hero-usa .hero-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-usa .hero-content p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

/* Main Content Section */
.main-content {
    padding: 80px 0;
}

.content-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-image {
    flex: 1;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Success Stories USA */
.success-stories-usa {
    padding: 80px 0;
    background: #ffffff;
}

.success-stories-usa h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.success-stories-usa .story-card {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}

.success-stories-usa .story-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.success-stories-usa .story-author {
    font-size: 14px;
    color: #e2725b;
    font-weight: 500;
}

/* Dating Guide Section */
.dating-guide {
    padding: 80px 0;
    background: #ffffff;
}

.dating-guide h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.guide-section {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e2725b;
}

.guide-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.guide-section p:last-child {
    margin-bottom: 0;
}

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

.state-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.state-list strong {
    color: #2d5a4a;
}

.tips-list {
    padding-left: 20px;
}

.tips-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list strong {
    color: #e2725b;
}

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

.top-countries h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.country-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}

.country-card:hover,
.country-card.active {
    border-color: #e2725b;
    transform: translateY(-3px);
}

.country-flag {
    font-size: 48px;
    margin-bottom: 15px;
}

.country-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.country-card p {
    font-size: 14px;
    color: #666;
}

/* Top Cities Section */
.top-cities {
    padding: 80px 0;
    background: #ffffff;
}

.top-cities h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.city-card {
    background: #f9e4d9;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.city-card:hover {
    background: #e2725b;
    color: white;
}

.city-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.city-card p {
    font-size: 14px;
    color: #666;
}

.city-card:hover h3,
.city-card:hover p {
    color: white;
}

/* Signup CTA */
.signup-cta {
    padding: 80px 0;
    background: #e2725b;
    text-align: center;
}

.signup-cta h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.signup-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive for USA Page */
@media (max-width: 768px) {
    .sub-header h1 {
        font-size: 22px;
    }
    
    .hero-usa {
        padding: 60px 0;
    }
    
    .hero-usa .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-usa .hero-content p {
        font-size: 16px;
    }
    
    .main-content {
        padding: 50px 0;
    }
    
    .content-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .content-text h2 {
        font-size: 26px;
    }
    
    .content-text p {
        font-size: 16px;
    }
    
    .success-stories-usa {
        padding: 50px 0;
    }
    
    .success-stories-usa h2 {
        font-size: 26px;
    }
    
    .dating-guide {
        padding: 50px 0;
    }
    
    .dating-guide h2 {
        font-size: 26px;
    }
    
    .guide-section {
        padding: 20px;
    }
    
    .guide-section h3 {
        font-size: 20px;
    }
    
    .guide-section p,
    .state-list li,
    .tips-list li {
        font-size: 15px;
    }
    
    .top-countries {
        padding: 50px 0;
    }
    
    .top-countries h2 {
        font-size: 26px;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .country-flag {
        font-size: 36px;
    }
    
    .top-cities {
        padding: 50px 0;
    }
    
    .top-cities h2 {
        font-size: 26px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .signup-cta {
        padding: 50px 0;
    }
    
    .signup-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* Senior-Friendly Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    body {
        color: #000;
        background-color: #fff;
    }
    
    .btn-primary, .btn-cta {
        background: #b33d3d !important;
        color: white !important;
    }
}