/* Reset & Base Styles */
:root {
    --primary-color: #d4af37; /* Gold */
    --primary-dark: #b4941f;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/asds.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-img {
    height: 300px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-card:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Cities */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: var(--white);
}

.city-overlay h3 {
    color: var(--white);
    margin-bottom: 0;
}

.city-card:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.rating {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-answer {
    margin-top: 10px;
    display: block;
}

/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* =========================================
   Gay Sugar Daddy Page Styles
   ========================================= */

/* Hero */
.gay-sd-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.gay-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.gay-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.gay-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gay-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Content Grid */
.gay-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gay-content-grid.reverse-layout .gay-text-col {
    order: 2;
}

.gay-content-grid.reverse-layout .gay-img-col {
    order: 1;
}

.gay-img-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gay-img-col img:hover {
    transform: translateY(-5px);
}

.gay-text-col h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.gay-text-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.gay-text-col p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Definition Box */
.gay-definition-box {
    background: #fff;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 0 10px 10px 0;
    max-width: 900px;
    margin: 0 auto;
}

.gay-definition-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.gay-definition-box p:last-child {
    margin-bottom: 0;
}

/* Feature Lists */
.gay-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.gay-feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.gay-feature-list li::before {
    content: '★'; /* Star for quality/luxury vibe */
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gay-feature-list strong {
    color: #333;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.gay-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.gay-comparison-table th,
.gay-comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.gay-comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.gay-comparison-table tr:last-child td {
    border-bottom: none;
}

.gay-comparison-table tr:hover {
    background: #f9f9f9;
}

/* Wants Grid */
.wants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.want-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.want-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.want-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.want-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Types Grid */
.types-grid-gay {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.type-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.type-item:hover {
    border-bottom-color: var(--primary-color);
}

.type-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Offline Places List */
.offline-places-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.offline-places-list li {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.offline-places-list li::before {
    content: '📍';
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Why Use Grid */
.why-use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.why-item h3 {
    color: var(--primary-color); /* Keep primary color for branding even on dark bg, or use white if contrast is bad. Let's stick to primary if it's bright enough, or a light gold. */
    color: #eebb55; /* Gold-ish for luxury dark theme */
    margin-bottom: 15px;
}

.why-item p {
    color: #ddd;
    font-size: 0.9rem;
}

/* Steps List */
.steps-list-gay {
    counter-reset: gay-step;
    list-style: none;
    padding: 0;
}

.steps-list-gay li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.steps-list-gay li::before {
    counter-increment: gay-step;
    content: counter(gay-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
}

/* Safety Tips */
.safety-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #28a745; /* Green for safety */
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tip-box h4 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Myths List */
.myths-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.myth-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.myth-item h3 {
    color: #d9534f; /* Red for Myth */
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.myth-item p strong {
    display: block;
    color: #28a745; /* Green for Fact */
    margin-bottom: 5px;
    margin-top: 10px;
}

.gay-cta-section h2 {
    color: white;
}

/* Breadcrumbs */
.breadcrumb-container {
    background: #f4f4f4;
    padding: 15px 0;
    margin-top: 80px; /* Header height */
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive Gay Page */
@media (max-width: 992px) {
    .gay-sd-hero {
        height: auto;
        padding: 80px 0;
        margin-top: 60px; /* Mobile header height */
    }

    .gay-hero-content h1 {
        font-size: 2rem;
    }

    .gay-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gay-content-grid.reverse-layout .gay-text-col {
        order: unset;
    }

    .gay-content-grid.reverse-layout .gay-img-col {
        order: unset;
    }

    .wants-grid,
    .why-use-grid,
    .myths-list {
        grid-template-columns: 1fr;
    }
    
    .safety-tips-grid,
    .offline-places-list {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        margin-right: -20px; /* Allow scroll on mobile */
    }
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col p {
    line-height: 1.8;
    color: #999;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #555;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--black);
}

/* CTA Section Fix */
.cta-section h2 {
    color: var(--white);
}

/* Hot Sugar Relationships Section */
.relationships-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.relationships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.relationship-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #eee;
    overflow: hidden;
}

.relationship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.rel-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.relationship-card:hover .rel-img img {
    transform: scale(1.05);
}

.rel-content {
    padding: 25px;
}

.relationship-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.relationship-card p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        transition: 0.3s;
        gap: 20px;
        text-align: center;
        opacity: 0;
    }
    
    .nav-links.active {
        left: 0;
        opacity: 1;
    }
    
    .about-grid, .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
    }

    .hero {
        padding-top: 140px; /* Add more space for header */
        height: auto;
        min-height: 100vh;
        align-items: flex-start; /* Start from top to ensure padding is respected */
    }

    .hero-content {
        margin-top: 20px;
    }
}

/* ===========================
   About Page Styles
   =========================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.3rem;
    color: #f1f1f1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Grid Layout */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-content-img img:hover {
    transform: translateY(-5px);
}

/* Mission Section */
.mission-section {
    position: relative;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Difference Section */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.diff-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.diff-img {
    height: 200px;
    overflow: hidden;
}

.diff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.diff-card:hover .diff-img img {
    transform: scale(1.1);
}

.diff-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.diff-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Privacy Section */
.privacy-box {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.privacy-box h2 {
    color: var(--black);
    margin-bottom: 30px;
}

/* Rules Section */
.rules-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.rules-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 500;
}

.rule-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.rule-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.rule-item p {
    margin-bottom: 0;
}

/* Stories Section */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.story-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.story-author {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
}

/* CTA Section About */
.cta-section-about {
    position: relative;
    padding: 100px 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-section-about h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section-about p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.cta-section-about .container {
    position: relative;
    z-index: 2;
}


/* About Page Responsive */
@media (max-width: 992px) {
    .about-grid-layout {
        gap: 40px;
    }
    
    .privacy-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
        margin-top: 60px; /* Adjust for mobile header height */
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .about-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .about-content-text {
        text-align: left;
    }
    
    .privacy-box {
        padding: 30px 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Privacy & Contact Page Styles
   ========================================= */

/* Shared Hero Styles */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Header offset */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
}

.hero-content-inner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-inner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Privacy Page Specifics */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.styled-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    top: 2px;
}

/* Safety Highlight Box */
.safety-highlight {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.safety-highlight .row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.safety-highlight .col-text {
    flex: 1;
}

.safety-highlight .col-img {
    flex: 1;
}

.safety-highlight .col-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Page Specifics */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-col h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-details-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-wrapper h3 {
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* FAQ Section */
.section-margin-top {
    margin-top: 80px;
}

.section-subtitle {
    max-width: 600px;
    margin: 10px auto 50px;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Info Grid Section */
.info-grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.info-card:hover img {
    transform: scale(1.05);
}

.info-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.info-content p {
    font-size: 0.9rem;
    color: #ddd;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 992px) {
    .safety-highlight .row {
        flex-direction: column-reverse;
    }
    
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .faq-grid,
    .info-grid-section {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 300px;
    }
    
    .hero-content-inner h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Sugar Baby Australia Page Styles
   ========================================= */

/* General Grid Layout for SB Page */
.sb-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sb-grid-layout.reverse-layout .sb-text-col {
    order: -1;
}

/* On mobile, standard block stacking order will apply if we don't fix it in media query. 
   Usually reverse layout on desktop means image on left. 
   We will handle mobile stacking in media query. */

.sb-text-col h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.sb-text-col p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.sb-img-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sb-img-col img:hover {
    transform: translateY(-5px);
}

/* Definition Section */
.definition-content {
    max-width: 1000px;
    margin: 0 auto;
}

.definition-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.type-info {
    padding: 25px;
}

.type-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.type-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Allowance Table */
.allowance-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 40px 0 20px;
}

.allowance-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.allowance-table th,
.allowance-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.allowance-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.allowance-table tr:last-child td {
    border-bottom: none;
}

.allowance-table tr:hover td {
    background-color: #fafafa;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    font-style: italic;
    margin-top: 15px;
}

/* Etiquette List */
.etiquette-list {
    list-style: none;
    padding: 0;
}

.etiquette-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.etiquette-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.etiquette-list strong {
    color: #333;
}

/* Find Methods Grid */
.find-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.method-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.method-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Local Rules List Box */
.rules-list-box {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.rules-list-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rules-list-box li {
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.rules-list-box li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -8px;
}

.rules-list-box strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Responsive for SB Page */
@media (max-width: 992px) {
    .sb-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-grid-layout.reverse-layout .sb-text-col {
        order: 2; /* Text below image on mobile for consistency if desired, or let it stack naturally */
        order: unset; /* Let it stack: image first or text first based on DOM order? 
                         In DOM:
                         Intro: text, img -> Text top, Img bottom
                         Etiquette: img, text -> Img top, Text bottom
                         This is fine. */
    }

    .features-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .find-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-list-box ul {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: 300px;
    }
    
    .hero-content-inner h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Login Page Styles
   ========================================= */

/* Login Hero */
.login-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Header height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.login-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.login-box-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
}

.login-header h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.login-header p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.login-form-main .form-group {
    margin-bottom: 20px;
}

.login-form-main label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.login-form-main input[type="text"],
.login-form-main input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.login-form-main input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.forgot-pass-link {
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-pass-link:hover {
    text-decoration: underline;
}

.btn-full-width {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.login-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

.login-footer-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Main Content Login */
.main-content-login {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.login-info-section {
    margin-bottom: 60px;
}

.login-info-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.login-info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.login-info-section h3 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-section.reverse .text-col {
    order: -1;
}

.img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Lists */
.custom-list, .step-list {
    padding-left: 20px;
    line-height: 1.8;
    color: #555;
}

.custom-list li, .step-list li {
    margin-bottom: 10px;
}

.check-list, .bullet-list {
    list-style: none;
    padding: 0;
}

.check-list li, .bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1rem;
    top: 5px;
}

/* Comparison Box */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.comp-item h3 {
    margin-top: 0;
    color: #333;
}

/* Troubleshoot Grid */
.troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ts-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.ts-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

/* Security Tips */
.security-tips-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tip {
    background: #fff;
    padding: 20px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tip h4 {
    margin-bottom: 10px;
    color: #333;
}

.tip p {
    font-size: 0.9rem;
    color: #666;
}

/* Quick Access */
.quick-access-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-section-login h2 {
    color: white;
}

/* Responsive Login */
@media (max-width: 992px) {
    .login-hero {
        height: auto;
        padding: 60px 0;
    }

    .grid-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-section.reverse .text-col {
        order: unset; /* Stack naturally */
    }

    .comparison-box,
    .troubleshoot-grid,
    .security-tips-box {
        grid-template-columns: 1fr;
    }

    .quick-access-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   Gay Sugar Daddy Page (Blog Style)
   ========================================= */
.gay-blog-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.gay-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.gay-blog-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gay-blog-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gay-blog-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.gay-blog-content h3 {
    font-size: 1.4rem;
    color: #444;
    margin: 30px 0 15px;
}

.gay-blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.gay-blog-content ul, 
.gay-blog-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.gay-blog-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.gay-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.gay-blog-cta {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .gay-blog-header h1 {
        font-size: 2rem;
    }
    
    .gay-blog-container {
        margin-top: 100px;
    }
}

/* =========================================
   How To Get Sugar Daddy Page Styles
   ========================================= */
.how-to-blog-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.how-to-blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-to-blog-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-meta {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.how-to-blog-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.how-to-blog-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.how-to-blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.how-to-blog-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.how-to-blog-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.content-img-right {
    float: right;
    width: 40%;
    margin: 10px 0 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-img-left {
    float: left;
    width: 40%;
    margin: 10px 30px 20px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-img-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.how-to-blog-cta {
    background: #f9f9f9;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 80px;
    border: 1px solid #eee;
}

.how-to-blog-cta h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.how-to-blog-cta p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .how-to-blog-header h1 {
        font-size: 2rem;
    }
    
    .how-to-blog-container {
        margin-top: 100px;
    }

    .content-img-right,
    .content-img-left {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
}

/* =========================================
   Blog Page & Section Styles
   ========================================= */
.blog-page-section {
    padding: 60px 0 80px;
    background-color: #f9f9f9;
}

.blog-page-header {
    margin-bottom: 50px;
    margin-top: 80px; /* Offset fixed header */
}

.blog-page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-page-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-page-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-card-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Responsive Blog Grid */
@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page-header {
        margin-top: 60px;
    }
    
    .blog-card-img {
        height: 200px;
    }
}

/* =========================================
   Sugar Baby After 40 Page Styles
   ========================================= */
.over-40-blog-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.over-40-blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.over-40-blog-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.over-40-blog-hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.over-40-blog-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.over-40-blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.over-40-blog-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.over-40-blog-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.over-40-blog-cta {
    background: #f9f9f9;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 80px;
    border: 1px solid #eee;
}

.over-40-blog-cta h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.over-40-blog-cta p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive for Over 40 Page */
@media (max-width: 768px) {
    .over-40-blog-header h1 {
        font-size: 2rem;
    }
    
    .over-40-blog-container {
        margin-top: 100px;
    }
}