/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    line-height: 1.6;
    --primary-color: #c5a059; /* Gold/Mustard from screenshot */
    --secondary-color: #2d0a1e; /* Deep Purple/Plum */
    --bg-light: #fff9f0; /* Cream background */
    --text-dark: #2d0a1e;
    --text-light: #ffffff;
    --white: #ffffff;
    --accent-gold: #e8d5b5;
    --transition: all 0.3s ease;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-family: var(--sans);
    width: 100%;
}

h1, h2, h3, h4, .logo span {
    font-family: var(--serif);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px; /* Rounded buttons like screenshot */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background-color: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    text-align: left;
}

.hero-img {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.hero-text {
    flex: 1.2;
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--primary-color);
    font-weight: 700;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-family: var(--serif);
    color: var(--white);
    font-style: italic;
    opacity: 0.9;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Section General */
section {
    padding: 100px 0;
}

section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Section Dividers */
.underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Why Mama & Baby Section */
.why-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.why-grid .about-content {
    text-align: left;
    margin: 0;
}

.why-grid .underline {
    margin: 0 0 25px 0;
}

/* Feature Grid Adjustments */
.feature-card h3 {
    font-family: var(--serif);
    font-weight: 700;
}

/* Pricing & Terms Styles */
.price-list {
    margin: 25px 0;
    text-align: left;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.popular {
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.price-item .duration {
    font-weight: 600;
    color: var(--secondary-color);
}

.price-item .amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-item .amount small {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 400;
}

.pricing-features {
    margin: 20px 0 30px;
    text-align: left;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px dashed var(--primary-color);
}

.pricing-footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Terms Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.term-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.term-card:hover {
    transform: translateY(-5px);
}

.term-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.term-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.term-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Member Grid Adjustments */
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-img img {
    transform: scale(1.1);
}

/* FAQ Item Adjustments */
.faq-item h3 {
    font-family: var(--serif);
    font-weight: 700;
}

/* Button Grouping */
.hero-btns {
    display: flex;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Content Page Grid */
.article-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.article-grid-img {
    flex: 1;
    min-width: 300px;
}

.article-grid-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.article-grid-text {
    flex: 1.5;
    min-width: 300px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 10, 30, 0.1);
}

.feature-card svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Member Profiles & Cards */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.member-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.member-card:hover {
    transform: scale(1.02);
}

.member-img {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.member-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, var(--secondary-color));
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.member-info p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Pricing */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    width: 380px;
    max-width: 100%;
    text-align: center;
    border: 1px solid var(--accent-gold);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
    font-family: var(--serif);
}

.price span {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.6;
}

/* Cities Section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.city-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(45, 10, 30, 0.9));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.city-overlay h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Content Pages Style */
.content-wrapper {
    padding-top: 80px;
}

.article-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.article-header h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.article-content {
    padding: 80px 0;
}

.article-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: var(--serif);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Mobile Responsiveness */
.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hero {
        padding: 140px 0 80px;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-img {
        max-width: 400px;
        order: 2;
    }
    .hero-text {
        order: 1;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li .btn {
        width: 100%;
        display: block;
        margin-top: 10px;
    }
    .hamburger {
        display: flex;
    }

    .why-grid {
        gap: 60px;
    }
    .why-item {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }
    .why-img {
        max-width: 100%;
    }
    .why-grid .about-content h3 {
        font-size: 2rem;
    }
    .why-grid .underline {
        margin: 0 auto 20px;
    }
}

.why-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item:nth-child(even) {
    flex-direction: row-reverse;
}

.why-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.why-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.why-img img:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.2);
}

.why-grid .about-content {
    flex: 1.2;
}

.why-grid .about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.why-grid .about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
}

/* Auckland Page Styles */
.auckland-page {
    background-color: var(--white);
}

.auckland-page main {
    padding-top: 80px; /* Offset for fixed header */
}

.auckland-page .auckland-hero {
    background: linear-gradient(rgba(45, 10, 30, 0.8), rgba(45, 10, 30, 0.8)), url('images/city1.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.auckland-page .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.auckland-page .auckland-hero h1 {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.auckland-page .auckland-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: var(--serif);
    font-style: italic;
    opacity: 0.9;
}

.auckland-page .auckland-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.auckland-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.auckland-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.auckland-page .text-block {
    flex: 1;
}

.auckland-page .img-block {
    flex: 1;
}

.auckland-page .img-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.auckland-page .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.auckland-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    display: block;
}

.auckland-page .text-block .underline {
    margin: 0 0 30px 0;
}

.auckland-page .lifestyle-cards,
.auckland-page .profiles-grid,
.auckland-page .shopping-grid,
.auckland-page .etiquette-grid,
.auckland-page .safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.auckland-page .lifestyle-card,
.auckland-page .profile-card,
.auckland-page .shopping-item,
.auckland-page .etiquette-item,
.auckland-page .safety-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.auckland-page .lifestyle-card:hover,
.auckland-page .profile-card:hover,
.auckland-page .shopping-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auckland-page .lifestyle-card img,
.auckland-page .profile-card img,
.auckland-page .shopping-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.auckland-page .stories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.auckland-page .story-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.auckland-page .story-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.auckland-page .story-text p {
    font-style: italic;
    margin-bottom: 10px;
}

.auckland-page .story-text span {
    font-weight: 700;
    color: var(--primary-color);
}

.auckland-page .styled-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.auckland-page .styled-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.auckland-page .styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.auckland-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.auckland-page th, .auckland-page td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.auckland-page th {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--serif);
    font-size: 1.1rem;
}

.auckland-page tr:last-child td {
    border-bottom: none;
}

.auckland-page .auckland-cta {
    background: linear-gradient(rgba(45, 10, 30, 0.7), rgba(45, 10, 30, 0.7)), url('images/city2.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.auckland-page .cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.auckland-page .cta-box h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.auckland-page .cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Auckland Mobile Adjustments */
@media (max-width: 992px) {
    .auckland-page .auckland-hero h1 {
        font-size: 2.8rem;
    }
    
    .auckland-page .section-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .auckland-page .section-grid:nth-of-type(even) {
        flex-direction: column;
    }

    .auckland-page .img-block {
        order: 2;
    }
    
    .auckland-page .text-block {
        order: 1;
        text-align: center;
    }

    .auckland-page .text-block .underline {
        margin: 0 auto 30px;
    }

    .auckland-page .story-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .auckland-page .stories-list {
        grid-template-columns: 1fr;
    }

    .auckland-page .img-block img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .auckland-page .auckland-hero h1 {
        font-size: 2.2rem;
    }
    
    .auckland-page .auckland-hero h2 {
        font-size: 1.4rem;
    }

    .auckland-page table th, .auckland-page table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Wellington Page Styles */
.wellington-page .wellington-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/city7.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.wellington-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.wellington-page .wellington-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wellington-page .wellington-hero h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-family: var(--serif);
    font-style: italic;
    opacity: 0.9;
}

.wellington-page .wellington-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.wellington-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.wellington-page section {
    padding: 100px 0;
}

.wellington-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wellington-page .section-grid.reverse {
    flex-direction: row-reverse;
}

.wellington-page .text-block {
    flex: 1;
}

.wellington-page .img-block {
    flex: 1;
}

.wellington-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wellington-page .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.wellington-page .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.wellington-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    display: block;
}

.wellington-page .text-block .underline {
    margin: 0 0 30px 0;
}

.wellington-page .profile-grid,
.wellington-page .venue-grid {
    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.wellington-page .profile-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.wellington-page .profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wellington-page .profile-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.wellington-page .profile-info {
    padding: 30px;
}

.wellington-page .profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.wellington-page .profile-info .role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wellington-page .profile-info .bio {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.wellington-page .venue-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}

.wellington-page .venue-card h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.wellington-page .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.wellington-page .feature-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.wellington-page .feature-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wellington-page .feature-item h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.wellington-page .comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.wellington-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.wellington-page .comparison-table th,
.wellington-page .comparison-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.wellington-page .comparison-table th {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.wellington-page .comparison-table tr:last-child td {
    border-bottom: none;
}

.wellington-page .wellington-cta {
    background: linear-gradient(rgba(45, 10, 30, 0.8), rgba(45, 10, 30, 0.8)), url('images/city3.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.wellington-page .cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.wellington-page .cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.wellington-page .cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.wellington-page .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.wellington-page .story-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.wellington-page .story-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.wellington-page .story-content .author {
    font-weight: 700;
    color: var(--secondary-color);
}

.wellington-page .seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wellington-page .season-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.wellington-page .season-card:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.wellington-page .season-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.wellington-page .season-card:hover h3 {
    color: var(--white);
}

/* Responsive for Wellington Page */
@media (max-width: 992px) {
    .wellington-page .section-grid,
    .wellington-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .wellington-page .wellington-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .wellington-page .features-list {
        grid-template-columns: 1fr;
    }
    
    .wellington-page .wellington-hero {
        height: auto;
        padding: 120px 0 80px;
    }
}


/* Lesbian Page Styles */
.lesbian-page {
    background-color: var(--white);
}

.lesbian-page .lesbian-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/country5.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.lesbian-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.lesbian-page .lesbian-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lesbian-page .lesbian-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.lesbian-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.lesbian-page section {
    padding: 100px 0;
}

.lesbian-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lesbian-page .section-grid.reverse {
    flex-direction: row-reverse;
}

.lesbian-page .text-block {
    flex: 1;
}

.lesbian-page .img-block {
    flex: 1;
}

.lesbian-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lesbian-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}

.lesbian-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.lesbian-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lesbian-page .benefit-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.lesbian-page .benefit-card:hover {
    transform: translateY(-10px);
}

.lesbian-page .benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.lesbian-page .connect-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.lesbian-page .step {
    text-align: center;
}

.lesbian-page .step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    display: block;
    margin-bottom: 10px;
}

.lesbian-page .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lesbian-page .faq-item {
    margin-bottom: 30px;
}

.lesbian-page .faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .lesbian-page .section-grid,
    .lesbian-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .lesbian-page .lesbian-hero h1 {
        font-size: 2.5rem;
    }
}

/* Sugar Baby Page Styles */
.sugar-baby-page {
    background-color: var(--white);
}

.sugar-baby-page .baby-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/country2.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.sugar-baby-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.sugar-baby-page .baby-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sugar-baby-page .baby-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.sugar-baby-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sugar-baby-page section {
    padding: 100px 0;
}

.sugar-baby-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sugar-baby-page .section-grid.reverse {
    flex-direction: row-reverse;
}

.sugar-baby-page .text-block {
    flex: 1;
}

.sugar-baby-page .img-block {
    flex: 1;
}

.sugar-baby-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sugar-baby-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}

.sugar-baby-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .sugar-baby-page .section-grid,
    .sugar-baby-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .sugar-baby-page .baby-hero h1 {
        font-size: 2.5rem;
    }
}

/* Christchurch Page Styles */
.christchurch-page {
    background-color: var(--white);
}

.christchurch-page main {
    padding-top: 80px;
}

.christchurch-page .christchurch-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/country3.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.christchurch-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.christchurch-page .christchurch-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.christchurch-page .christchurch-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: var(--serif);
    font-style: italic;
    opacity: 0.9;
}

.christchurch-page .christchurch-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.christchurch-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.christchurch-page section {
    padding: 100px 0;
}

.christchurch-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.christchurch-page .section-grid.reverse {
    flex-direction: row-reverse;
}

.christchurch-page .text-block {
    flex: 1;
}

.christchurch-page .img-block {
    flex: 1;
}

.christchurch-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.christchurch-page .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.christchurch-page .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.christchurch-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    display: block;
}

.christchurch-page .text-block .underline {
    margin: 0 0 30px 0;
}

.christchurch-page .elite-grid,
.christchurch-page .challenges-grid,
.christchurch-page .profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.christchurch-page .elite-card,
.christchurch-page .challenge-item,
.christchurch-page .profile-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.christchurch-page .elite-card:hover,
.christchurch-page .profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.christchurch-page .elite-card img,
.christchurch-page .profile-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.christchurch-page .elite-info,
.christchurch-page .profile-info,
.christchurch-page .challenge-item {
    padding: 30px;
}

.christchurch-page .elite-info h3,
.christchurch-page .profile-info h3,
.christchurch-page .challenge-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.christchurch-page .profile-info .role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.christchurch-page .profile-info .bio {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.christchurch-page .leading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.christchurch-page .leading-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.christchurch-page .places-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.christchurch-page .place-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.christchurch-page .allowance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.christchurch-page .allowance-table th,
.christchurch-page .allowance-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.christchurch-page .allowance-table th {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.christchurch-page .how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.christchurch-page .step {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.christchurch-page .step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Christchurch Mobile Adjustments */
@media (max-width: 992px) {
    .christchurch-page .section-grid,
    .christchurch-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .christchurch-page .christchurch-hero h1 {
        font-size: 2.8rem;
    }

    .christchurch-page .img-block img {
        height: 300px;
    }

    .christchurch-page .text-block {
        text-align: center;
    }

    .christchurch-page .text-block .underline {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .christchurch-page .christchurch-hero {
        padding: 120px 0 80px;
    }
}

/* App Page Styles */
.app-page .app-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country16.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}
.app-page .app-intro .section-grid,
.app-page .app-why .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.app-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.app-page .text-block, .app-page .img-block {
    flex: 1;
}
.app-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.app-page .app-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.app-page .feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (max-width: 992px) {
    .app-page .section-grid, .app-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

/* Guide Page Styles */
.guide-page .guide-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country1.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}
.guide-page .guide-intro .section-grid,
.guide-page .guide-profile .section-grid,
.guide-page .guide-dating .section-grid,
.guide-page .guide-success .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.guide-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.guide-page .text-block, .guide-page .img-block {
    flex: 1;
}
.guide-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.guide-page .guide-mindset .mindset-grid,
.guide-page .guide-outreach .outreach-grid,
.guide-page .guide-safety .safety-grid,
.guide-page .guide-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.guide-page .mindset-card, .guide-page .outreach-item, .guide-page .safety-card, .guide-page .faq-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.guide-page .guide-cta .cta-box {
    background: linear-gradient(rgba(45, 10, 30, 0.8), rgba(45, 10, 30, 0.8)), url('images/country2.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    border-radius: 20px;
}
@media (max-width: 992px) {
    .guide-page .section-grid, .guide-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

/* Sugar Mummy Page Styles */
.sugar-mummy-page .mummy-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country19.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.sugar-mummy-page .mummy-hero h1 {
    font-size: 4.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}
.sugar-mummy-page .mummy-hero h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 30px;
    font-family: var(--serif);
    font-style: italic;
    opacity: 0.9;
}
.sugar-mummy-page .mummy-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}
.sugar-mummy-page .hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.sugar-mummy-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.sugar-mummy-page section {
    padding: 100px 0;
}
.sugar-mummy-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.sugar-mummy-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}
.sugar-mummy-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.sugar-mummy-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.sugar-mummy-page .text-block, .sugar-mummy-page .img-block {
    flex: 1;
}
.sugar-mummy-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.sugar-mummy-page .mummy-benefits .benefits-grid,
.sugar-mummy-page .mummy-types .types-grid,
.sugar-mummy-page .mummy-success .stories-grid,
.sugar-mummy-page .mummy-communities .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.sugar-mummy-page .benefit-card, .sugar-mummy-page .type-card, .sugar-mummy-page .story-item, .sugar-mummy-page .community-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (max-width: 992px) {
    .sugar-mummy-page .section-grid, .sugar-mummy-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

/* Sugar Baby Page Styles */
.sugar-baby-page .baby-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country27.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}
.sugar-baby-page .baby-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.sugar-baby-page .baby-hero h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}
.sugar-baby-page .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}
.sugar-baby-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.sugar-baby-page section {
    padding: 100px 0;
}
.sugar-baby-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.sugar-baby-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.sugar-baby-page .text-block, .sugar-baby-page .img-block {
    flex: 1;
}
.sugar-baby-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.sugar-baby-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}
.sugar-baby-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.sugar-baby-page .benefits-grid, .sugar-baby-page .guide-grid, .sugar-baby-page .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.sugar-baby-page .benefit-card, .sugar-baby-page .guide-item, .sugar-baby-page .safety-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (max-width: 992px) {
    .sugar-baby-page .section-grid, .sugar-baby-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

/* Lesbian Page Styles */
.lesbian-page .lesbian-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country26.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}
.lesbian-page .lesbian-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.lesbian-page .lesbian-hero h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}
.lesbian-page .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}
.lesbian-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.lesbian-page section {
    padding: 100px 0;
}
.lesbian-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.lesbian-page .lesbian-cta h2 {
    color: var(--white);
}
.lesbian-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}
.lesbian-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.lesbian-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.lesbian-page .text-block, .lesbian-page .img-block {
    flex: 1;
}
.lesbian-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.lesbian-page .benefits-grid, .lesbian-page .connect-steps, .lesbian-page .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.lesbian-page .benefit-card, .lesbian-page .step, .lesbian-page .city-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.lesbian-page .comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}
.lesbian-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.lesbian-page .comparison-table th, .lesbian-page .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.lesbian-page .comparison-table th {
    background: var(--secondary-color);
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .lesbian-page .section-grid, .lesbian-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .lesbian-page .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* App Page Styles */
.app-page .app-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country32.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}
.app-page .app-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.app-page .app-hero h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}
.app-page .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}
.app-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.app-page section {
    padding: 100px 0;
}
.app-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.app-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}
.app-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.app-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.app-page .text-block, .app-page .img-block {
    flex: 1;
}
.app-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.app-page .features-grid, .app-page .benefits-grid, .app-page .safety-grid, .app-page .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.app-page .feature-card, .app-page .benefit-card, .app-page .safety-card, .app-page .community-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* How to Page Styles */
.how-to-page .how-to-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/country32.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.how-to-page .how-to-hero h1 {
    font-size: 4.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}
.how-to-page .how-to-hero h2 {
    font-size: 2rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.how-to-page .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.how-to-page section {
    padding: 100px 0;
}
.how-to-page h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.how-to-page .underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 0 30px 0;
    display: block;
}
.how-to-page .section-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.how-to-page .section-grid.reverse {
    flex-direction: row-reverse;
}
.how-to-page .text-block, .how-to-page .img-block {
    flex: 1;
}
.how-to-page .img-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.how-to-page .tips-grid, .how-to-page .rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.how-to-page .tip-card, .how-to-page .rule-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.how-to-page .tip-card h3, .how-to-page .rule-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.how-to-page .tip-card p, .how-to-page .rule-card p {
    color: #666;
    line-height: 1.6;
}
.how-to-page .final-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}
.how-to-page .final-cta h2 {
    color: var(--primary-color) !important;
    font-size: 3rem;
    margin-bottom: 25px;
}
.how-to-page .final-cta p {
    font-size: 1.3rem;
    margin: 0 auto 45px;
    max-width: 800px;
    opacity: 0.9;
}
@media (max-width: 992px) {
    .how-to-page .section-grid, .how-to-page .section-grid.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .how-to-page .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .how-to-page .how-to-hero h1 {
        font-size: 2.8rem;
    }
}
