:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #000000; /* Black */
    --accent-color: #c90076; /* Pinkish for Sugar Mommy vibe */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-wrap: break-word; /* Ensure long words break */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FAQ Page Specific Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f0e6cc 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

/* CDMX Page Specific Styles */
.cdmx-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddymexicocity-935x547.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdmx-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cdmx-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cdmx-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cdmx-section {
    padding: 80px 0;
}

.cdmx-bg-light {
    background-color: #f8f9fa;
}

.cdmx-bg-dark {
    background-color: #1a1a1a;
    color: var(--white);
}

.cdmx-bg-dark .cdmx-title {
    color: var(--white);
}

.cdmx-bg-dark .cdmx-title::after {
    background-color: var(--primary-color);
}

.cdmx-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.cdmx-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .cdmx-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.cdmx-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

.cdmx-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cdmx-grid-2.reverse .cdmx-text-block {
    order: 2;
}

.cdmx-grid-2.reverse .cdmx-img-wrapper {
    order: 1;
}

.cdmx-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.cdmx-img:hover {
    transform: scale(1.02);
}

.cdmx-profile-grid, .cdmx-types-grid, .cdmx-neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cdmx-profile-card, .cdmx-hood-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.cdmx-profile-card:hover, .cdmx-hood-card:hover {
    transform: translateY(-5px);
}

.cdmx-profile-card h3, .cdmx-hood-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cdmx-type-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.cdmx-type-item:hover {
    transform: translateY(-10px);
}

.cdmx-type-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cdmx-type-item h3 {
    padding: 20px 20px 5px;
    color: var(--primary-color);
}

.cdmx-type-item p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

.cdmx-table-responsive {
    overflow-x: auto;
}

.cdmx-places-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.cdmx-places-table th, .cdmx-places-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cdmx-places-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cdmx-places-table tr:hover {
    background-color: rgba(255,255,255,0.05);
}

.cdmx-list li, .cdmx-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.cdmx-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cdmx-tips-box {
    background: linear-gradient(to right, #fff, #f0f0f0);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.cdmx-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cdmx-steps-list {
    counter-reset: cdmx-counter;
    list-style: none;
}

.cdmx-steps-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}

.cdmx-steps-list li::before {
    counter-increment: cdmx-counter;
    content: counter(cdmx-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
}

.cdmx-mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cdmx-mistake-card {
    background: #fff0f0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffcccc;
}

.cdmx-mistake-card h4 {
    color: #d9534f;
    margin-bottom: 10px;
}

.cdmx-final-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cdmx-cta-wrapper {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .cdmx-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cdmx-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cdmx-grid-2.reverse .cdmx-text-block {
        order: 1;
    }
    
    .cdmx-grid-2.reverse .cdmx-img-wrapper {
        order: 2;
    }
    
    .cdmx-title {
        font-size: 2rem;
    }
}


/* Tijuana Page Styles */
.tij-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddytijuana-1242x605.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tij-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffcc00; /* Vibrant Gold/Yellow for border energy */
}

.tij-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tij-btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff0055; /* Hot Pink/Red for nightlife vibe */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tij-btn-hero:hover {
    background-color: #d60045;
    transform: scale(1.05);
}

.tij-section {
    padding: 80px 0;
}

.tij-bg-light {
    background-color: #f4f4f4;
}

.tij-bg-dark {
    background-color: #111;
    color: #fff;
}

.tij-text-center {
    text-align: center;
}

.tij-intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

.tij-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tij-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tij-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.tij-card:hover {
    transform: translateY(-10px);
}

.tij-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tij-card h3 {
    margin: 20px 0 10px;
    color: #333;
}

.tij-card p {
    padding: 0 20px;
    color: #666;
    font-size: 0.95rem;
}

.tij-club-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tij-club-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    transition: background 0.3s;
}

.tij-club-card:hover {
    background: rgba(255,255,255,0.1);
}

.tij-club-card h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

.tij-address {
    color: #aaa;
    font-style: italic;
    margin-bottom: 5px;
}

.tij-hours {
    color: #ff0055;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tij-list {
    list-style: none;
    padding: 0;
}

.tij-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #ff0055;
}

.tij-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tij-pros ul, .tij-cons ul {
    list-style: none;
    padding: 0;
}

.tij-pros li {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tij-cons li {
    color: #c0392b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tij-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tij-comparison-table th, .tij-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tij-comparison-table th {
    background-color: #333;
    color: white;
}

.tij-comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tij-hero-small {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddycitiess-1101x509.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tij-hero-content h1 {
        font-size: 2.5rem;
    }

    .tij-grid-2, .tij-grid-3, .tij-club-grid, .tij-comparison-grid {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .tij-image-box img {
        width: 100%;
        height: auto;
    }

    .tij-hero {
        padding: 100px 0;
    }
    
    .tij-table-wrapper {
        overflow-x: auto;
    }
    
    .tij-comparison-table {
        min-width: 600px; /* Ensure table is readable on small screens */
    }
}

.qro-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddiesach-1500x857.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0;
    text-align: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qro-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif; /* Elegant serif for Qro */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.qro-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.qro-btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 50px; /* More rounded for softer feel */
    background-color: #8e44ad; /* Royal Purple/Wine color */
    border: none;
    transition: all 0.3s ease;
}

.qro-btn-large:hover {
    background-color: #732d91;
    transform: scale(1.05);
}

.qro-section {
    padding: 90px 0;
}

.qro-section-alt {
    background-color: #f4f4f4;
    padding: 90px 0;
}

.qro-bg-wine {
    background-color: #581845; /* Deep wine color */
    color: var(--white);
    padding: 90px 0;
}

.qro-bg-light {
    background-color: #fff;
    padding: 90px 0;
    border-top: 1px solid #eee;
}

.qro-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qro-img-wrapper {
    width: 100%;
    position: relative;
}

.qro-img-responsive {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.qro-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.qro-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.qro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.qro-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.qro-card h3 {
    padding: 25px 25px 10px;
    color: #581845;
    font-size: 1.5rem;
}

.qro-card p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.qro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.qro-feature {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.qro-feature h3 {
    color: #f1c40f; /* Gold accent */
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.qro-list {
    list-style: none;
    margin-top: 20px;
}

.qro-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.qro-list li::before {
    content: '🍷'; /* Wine glass icon for Qro */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}

.qro-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qro-location-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #581845;
}

.qro-location-card h3 {
    color: #581845;
    margin-bottom: 15px;
}

.qro-advice-box {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #f1c40f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qro-advice-box h4 {
    color: #581845;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.qro-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.qro-story {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.qro-story blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qro-story cite {
    font-weight: bold;
    color: #581845;
    display: block;
    text-align: right;
}

.qro-comparison-list {
    list-style: none;
}

.qro-comparison-list li {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.qro-comparison-list strong {
    display: block;
    color: #581845;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.qro-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qro-faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.qro-faq-item h4 {
    color: #333;
    margin-bottom: 15px;
}

.qro-final-section {
    background: linear-gradient(rgba(88, 24, 69, 0.8), rgba(88, 24, 69, 0.8)), url('images/private-wine-tasting-at-la-casa-del-vino1-695x522.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.qro-final-box {
    max-width: 800px;
    margin: 0 auto;
}

.qro-final-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.qro-final-box p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .qro-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .qro-hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .qro-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .qro-btn-large {
        width: 100%;
        display: block;
    }
    
    .qro-final-box h2 {
        font-size: 2rem;
    }
}
.dark-section {
    background-color: #111;
    color: #fff;
    padding: 80px 0;
}

.safety-section {
    background-color: #fff4f4;
    padding: 60px 0;
    margin: 40px auto;
    border-radius: 10px;
    text-align: center;
}

.safety-icon, .app-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-icon svg, .app-feature-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.app-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.app-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.app-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #eee;
}

.app-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.app-section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Override title color in dark sections */
.dark-section .app-section-title h2 {
    color: var(--white);
}

.app-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.app-comparison-table th, .app-comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.app-comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
}

.app-comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.download-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.download-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.download-card h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.step-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.app-feature-item {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.app-feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.app-feature-item p {
    color: #000 !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

.app-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.safety-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.safety-item:hover {
    transform: translateY(-5px);
}

.safety-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.app-image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.app-image-row img {
    height: 300px; /* Fixed height for uniformity */
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .app-image-row img {
        width: 100%;
        height: auto;
    }
}

.faq-hero h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-hero p {
    color: #555;
    font-size: 1.2rem;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.faq-category-title span {
    margin-right: 10px;
    font-size: 2rem;
}

.faq-list {
    display: grid;
    gap: 15px;
}

.faq-details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-details[open] {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.faq-summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-details[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-answer-text {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f9f9f9;
}

.faq-image-container {
    text-align: center;
    margin: 30px 0;
}

.faq-image-container img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 400px;
    object-fit: cover;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.faq-table th, .faq-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.faq-table th {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Success Stories */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-join {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-join:hover {
    background-color: #b5952f;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmommyabout-836x567.jpg'); /* Use a relevant background image */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-hero:hover {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 100px 0;
}

section.container {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Features/Benefits */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    fill: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* How it works */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
    .step {
        flex: 0 0 calc((100% - 80px) / 3); /* 3 items per row with 40px gap */
        min-width: auto;
    }
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Profiles */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.profile-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: shadow 0.3s;
}

.profile-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-info {
    padding: 15px;
}

.profile-name {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.profile-location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Pricing */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 20px 0;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    margin-bottom: 10px;
}

/* Cities */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.city-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.city-item:hover {
    transform: translateY(-5px);
}

.city-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.city-name {
    padding: 20px;
    background: var(--white);
    color: #555;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.city-name strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.safety-item:hover {
    transform: translateY(-5px);
}

.safety-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Etiquette Section */
.etiquette-list {
    list-style: none;
    padding: 0;
}

.etiquette-list li {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.etiquette-list li:hover {
    transform: translateX(5px);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Content Pages */
.content-page {
    padding: 100px 0;
}

.content-page h1 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.content-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.content-page p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddyplayadelcarmen-1199x745.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary-white:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Sugar Mommy Page Specifics */
.hero-sugar-mommy {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmommy344-919x492.jpg');
    background-size: cover;
    background-position: center;
}

.content-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.divider {
    margin: 60px 0;
    border-top: 1px solid #eee;
}

.highlight-box {
    background: #fff;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.text-center-limit {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .mt-60 {
        margin-top: 30px;
    }
}

/* Sugar Baby Page Specific Styles */
.sb-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugarbabiesmx-1500x916.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-section {
    padding: 80px 0;
}

.sb-bg-light {
    background-color: var(--light-bg);
}

.sb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sb-two-col.reverse {
    direction: rtl;
}

.sb-two-col.reverse .sb-text {
    direction: ltr;
}

.sb-text {
    font-size: 1.1rem;
}

.sb-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sb-image img:hover {
    transform: scale(1.02);
}

.sb-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sb-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.sb-card:hover {
    transform: translateY(-5px);
}

.sb-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sb-list, .sb-list-simple {
    list-style: none;
    padding: 0;
}

.sb-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.sb-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.sb-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.sb-type-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.sb-type-item:hover {
    transform: translateY(-5px);
}

.sb-type-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sb-type-item h3 {
    margin: 15px 0 10px;
    color: var(--secondary-color);
    padding: 0 15px;
}

.sb-type-item p {
    padding: 0 15px 20px;
    font-size: 0.9rem;
    color: #666;
}

.sb-check-list {
    list-style: none;
    padding: 0;
}

.sb-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.sb-check-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sb-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sb-offer-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.sb-offer-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sb-comparison-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sb-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sb-table th, .sb-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sb-table th {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.sb-table tr:hover {
    background-color: #f9f9f9;
}

.sb-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.sb-content-block h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.sb-allowance-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.sb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sb-img-rounded {
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sb-flex-center {
    display: flex;
    align-items: center;
}

.sb-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sb-tip {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-bottom: 3px solid var(--accent-color);
}

.sb-tip h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.sb-reflection-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #eee 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sb-reflection-box .sb-check-list {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.cta-box-final {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.75)), url('images/sugarbabiesmx-1500x916.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 70px 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 50px auto 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-box-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cta-box-final h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-box-final p {
    margin-bottom: 40px;
    color: #e0e0e0;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-box-final .btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background-color: #fff;
    color: var(--secondary-color);
}

.mt-20 { margin-top: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Safety Page Specific Styles */
.safety-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/helicopter-tour-over-bogot-695x530.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.safety-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.safety-hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.safety-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.safety-section {
    padding: 80px 0;
}

.safety-bg-light {
    background-color: #f4f4f4;
}

.safety-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.safety-text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.safety-image-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.safety-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.safety-tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid var(--primary-color);
}

.safety-tip-card:hover {
    transform: translateY(-5px);
}

.safety-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.safety-tip-card h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.safety-tip-card p {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.safety-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.safety-img-col {
    position: relative;
}

.safety-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.safety-caption {
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.safety-check-list {
    list-style: none;
    padding: 0;
}

.safety-check-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

.safety-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745; /* Green for safety */
    font-weight: bold;
    font-size: 1.2rem;
}

.safety-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.safety-table th, .safety-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.safety-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
}

.safety-table tr:last-child td {
    border-bottom: none;
}

.safety-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.safety-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.safety-topic {
    text-align: center;
}

.safety-topic img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.safety-topic h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.safety-alert-box {
    background: #fff0f0;
    border-left: 6px solid #dc3545;
    padding: 40px;
    border-radius: 10px;
}

.safety-alert-box h2 {
    color: #dc3545;
    margin-bottom: 20px;
}

.safety-action-list {
    list-style: none;
    padding: 0;
}

.safety-action-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.safety-action-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.safety-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.safety-faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.safety-faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.safety-final-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.safety-final-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.safety-final-box p {
    color: #ddd;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-large-safety {
    padding: 18px 40px;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

.btn-large-safety:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .safety-intro-grid, .safety-two-col {
        grid-template-columns: 1fr;
    }
    
    .safety-hero-content h1 {
        font-size: 2rem;
    }
    
    .safety-final-box {
        padding: 40px 20px;
    }
}


    border: 0;
    border-top: 1px solid #eee;
}

.highlight-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.highlight-box h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.text-center-limit {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .highlight-box {
        padding: 20px;
        margin-top: 40px;
    }
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.mobile-menu .btn-join {
    width: 100%;
    text-align: center;
    max-width: 300px;
}

/* Feature Card Images */
.feature-card {
    padding: 0;
    overflow: hidden;
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card-content {
    padding: 30px;
}

/* Dark Section (Benefits) */
.dark-section {
    background-color: var(--dark-bg);
    color: var(--primary-color);
}

.dark-section h2, .dark-section h3 {
    color: var(--primary-color);
}

.dark-section p, .dark-section li {
    color: #ddd;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1;
    min-width: 300px;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
}

.benefits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.benefits-container.reverse {
    flex-direction: row-reverse;
}

/* Pricing Groups */
.pricing-group-title {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.pricing-section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-style: italic;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

/* App Section */
.app-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.app-text {
    flex: 1;
    min-width: 300px;
}

.app-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Two Column Section */
.two-column-section {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.two-column-section > div {
    flex: 1;
    min-width: 300px;
}

/* Content Image Right */
.content-image-right {
    float: right;
    margin: 0 0 20px 20px;
    border-radius: 10px;
    width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .two-column-section,
    .benefits-container,
    .app-container,
    .steps-container {
        flex-direction: column;
    }

    .two-column-section > div,
    .benefits-text,
    .benefits-image,
    .app-text,
    .app-image,
    .step {
        width: 100%;
        min-width: 100%;
    }

    .benefits-container.reverse {
        flex-direction: column; /* Stack vertically on mobile */
    }

    .content-image-right {
        float: none;
        display: block;
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
    }
    
    nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-direction: row; /* Keep logo and toggle in row on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem; /* Smaller font for mobile titles to prevent overflow */
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .btn-hero {
        padding: 12px 20px; /* Reduce padding on mobile */
        font-size: 1rem;
        width: 100%; /* Make buttons full width on very small screens if needed, or allow wrapping */
        max-width: 300px; /* Prevent them from being too wide */
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .benefits-container.reverse {
        flex-direction: row; /* Stack normally on mobile */
    }
}

@media (min-width: 769px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Sugar Mommy Page Specifics */
.hero-sugar-mommy {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmommy344-919x492.jpg');
    background-size: cover;
    background-position: center;
}

.content-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.divider {
    margin: 60px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.highlight-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.highlight-box h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.text-center-limit {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .highlight-box {
        padding: 20px;
        margin-top: 40px;
    }
}

/* 4 columns for steps on PC */
@media (min-width: 992px) {
    .steps-container.steps-4-col .step {
        flex: 0 0 calc((100% - 120px) / 4); /* 4 items per row with 40px gap */
    }
}

/* Responsive Table Wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Guadalajara Page Specific Styles */
.gdl-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddyguadalajara-695x346.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdl-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gdl-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.gdl-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gdl-section {
    padding: 80px 0;
}

.gdl-bg-light {
    background-color: #f8f9fa;
}

.gdl-bg-dark {
    background-color: #1a1a1a;
    color: var(--white);
}

.gdl-title {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.gdl-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.gdl-bg-dark .gdl-title h2 {
    color: var(--white);
}

.gdl-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gdl-intro-text p {
    margin-bottom: 20px;
}

.gdl-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gdl-two-col.reverse {
    direction: rtl;
}

.gdl-two-col.reverse .gdl-text-col {
    direction: ltr;
}

.gdl-text-col {
    font-size: 1.1rem;
}

.gdl-img-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gdl-img-col img:hover {
    transform: scale(1.02);
}

.gdl-list li, .gdl-check-list li, .gdl-tips-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.gdl-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.gdl-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gdl-tips-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.gdl-content-box {
    background: linear-gradient(to right, #fff, #f9f9f9);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

.gdl-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gdl-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.gdl-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.gdl-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.gdl-travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.gdl-travel-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gdl-travel-item:hover {
    transform: translateY(-10px);
}

.gdl-travel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gdl-travel-item h3 {
    padding: 20px 20px 5px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.gdl-travel-item p {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #555;
}

.gdl-text-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
}

.gdl-text-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gdl-comparison-table-container {
    overflow-x: auto;
}

.gdl-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
}

.gdl-comparison-table th, .gdl-comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gdl-comparison-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.gdl-final-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddyguadalajara-695x346.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.gdl-final-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.6);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.gdl-final-box h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.gdl-final-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gdl-two-col, .gdl-grid-2, .gdl-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .gdl-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gdl-final-box {
        padding: 30px 15px;
    }

    .gdl-btn-large {
        padding: 15px 20px;
        font-size: 1rem;
        width: 90%;
        max-width: 350px;
        white-space: normal;
        line-height: 1.4;
        display: inline-block;
    }
}

/* Monterrey Page Styles */
.mty-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/realsugarphoto-829x478.jpeg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.mty-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.mty-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.mty-intro-section {
    padding: 60px 20px;
}

.mty-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mty-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mty-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mty-img-responsive {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mty-section-alt {
    background-color: var(--light-bg);
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px auto;
}

.mty-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.mty-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.mty-comparison-table th, .mty-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mty-comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.mty-card, .mty-location-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.mty-card:hover, .mty-location-card:hover {
    transform: translateY(-5px);
}

.mty-card img, .mty-location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mty-card h3, .mty-location-card h3 {
    padding: 15px 15px 5px;
    color: var(--primary-color);
}

.mty-card p, .mty-location-card p {
    padding: 0 15px;
    font-size: 0.95rem;
}

.mty-list, .mty-warning-list {
    list-style: none;
    padding: 0;
}

.mty-list li, .mty-warning-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.mty-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mty-warning-list li::before {
    content: '⚠';
    color: #ff4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mty-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.mty-step {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.mty-step h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mty-faq-section {
    margin: 60px auto;
}

.mty-faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mty-faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mty-final-section {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/realsugarphoto-829x478.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    border-radius: 10px;
}

.mty-final-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.mty-final-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mty-btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .mty-grid-2, .mty-grid-3, .mty-grid-4 {
        grid-template-columns: 1fr;
    }

    .mty-steps {
        flex-direction: column;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .mty-hero {
        height: auto;
        min-height: 550px;
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .mty-hero-content {
        width: 100%;
        margin-top: 10px;
    }

    .mty-hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .mty-btn-large {
        display: inline-block;
        width: auto;
        max-width: 90%;
        font-size: 1.1rem;
        padding: 15px 30px;
        white-space: normal;
        line-height: 1.3;
        margin-top: 10px;
    }
}

/* Cancun Page Styles */
.cun-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddyplayadelcarmen-1199x745.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cun-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cun-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cun-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.cun-section {
    padding: 80px 0;
}

.cun-section-alt {
    background-color: #f0f8ff; /* Light blue/alice blue for beach vibe */
    padding: 80px 0;
}

.cun-bg-dark {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0;
}

.cun-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cun-img-wrapper {
    width: 100%;
}

.cun-img-responsive {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cun-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cun-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.cun-card:hover {
    transform: translateY(-5px);
}

.cun-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cun-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.cun-card p {
    padding: 0 20px 20px;
    color: #555;
}

.cun-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cun-feature {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

.cun-feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cun-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cun-location-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.cun-location-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cun-season-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.cun-season-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cun-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.cun-advice-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.cun-advice-table th, .cun-advice-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cun-advice-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.cun-check-list {
    list-style: none;
}

.cun-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.cun-check-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cun-list {
    list-style: none;
}

.cun-list li {
    margin-bottom: 20px;
}

.cun-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cun-final-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddyplayadelcarmen-1199x745.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cun-final-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.6);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cun-final-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cun-final-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cun-grid-2 {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .cun-hero {
        padding: 100px 0;
        height: auto;
        min-height: 500px;
    }

    .cun-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cun-final-box {
        padding: 30px 20px;
    }
    
    .cun-btn-large {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
        display: block;
        text-align: center;
    }
}

/* Puebla Page Styles */
.pue-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddycitiess-1101x509.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pue-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pue-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pue-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 5px;
}

.pue-section {
    padding: 80px 0;
}

.pue-section-alt {
    background-color: #f9f9f9; /* Neutral elegant grey */
    padding: 80px 0;
}

.pue-bg-dark {
    background-color: #2c3e50; /* Dark blue-grey, elegant */
    color: var(--white);
    padding: 80px 0;
}

.pue-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pue-img-wrapper {
    width: 100%;
}

.pue-img-responsive {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pue-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pue-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    border-bottom: 3px solid var(--primary-color);
}

.pue-card:hover {
    transform: translateY(-5px);
}

.pue-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.pue-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.pue-card p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pue-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pue-card-simple {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.pue-card-simple h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pue-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pue-location-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.pue-location-card h3 {
    color: #f1c40f; /* Gold for elegance */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pue-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.pue-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.pue-comparison-table th, .pue-comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pue-comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.pue-comparison-table tr:hover {
    background-color: #f5f5f5;
}

.pue-list {
    list-style: none;
}

.pue-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pue-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.pue-list strong {
    color: var(--primary-color);
}

.pue-advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pue-advice-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pue-advice-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.pue-final-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddymrida-686x411.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.pue-final-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

.pue-final-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

@media (max-width: 768px) {
    .pue-grid-2 {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .pue-hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .pue-hero-content h1 {
        font-size: 2.5rem;
    }

    .pue-btn-large {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Hermosillo Page Styles */
.hmo-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugarbabiesmx-1500x916.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hmo-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hmo-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hmo-section {
    padding: 80px 0;
}

.hmo-bg-light {
    background-color: #f9f9f9;
}

.hmo-title {
    margin-bottom: 40px;
    text-align: center;
}

.hmo-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hmo-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hmo-intro-text p {
    margin-bottom: 20px;
}

.hmo-two-col {
    display: flex;
    gap: 50px;
    align-items: center;
}

.hmo-img-col {
    flex: 1;
}

.hmo-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hmo-text-col {
    flex: 1;
}

.hmo-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hmo-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.hmo-card:hover {
    transform: translateY(-5px);
}

.hmo-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hmo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hmo-check-list {
    list-style: none;
    margin-top: 20px;
}

.hmo-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.hmo-check-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hmo-final-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugarmommy344-919x492.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.hmo-final-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

.hmo-final-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hmo-btn-large {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hmo-two-col {
        flex-direction: column;
    }

    .hmo-grid-2, .hmo-grid-3 {
        grid-template-columns: 1fr;
    }

    .hmo-hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .hmo-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hmo-btn-large {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.hmo-text-center {
    text-align: center;
}

.hmo-btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid transparent;
}

.hmo-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Toluca Page Styles */
.tol-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddycitiess-1101x509.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tol-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tol-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.tol-section {
    padding: 80px 0;
}

.tol-bg-light {
    background-color: #f9f9f9;
}

.tol-title {
    margin-bottom: 40px;
    text-align: center;
}

.tol-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tol-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tol-intro-text p {
    margin-bottom: 20px;
}

.tol-two-col {
    display: flex;
    gap: 50px;
    align-items: center;
}

.tol-img-col {
    flex: 1;
}

.tol-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tol-text-col {
    flex: 1;
}

.tol-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tol-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.tol-card:hover {
    transform: translateY(-5px);
}

.tol-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tol-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tol-check-list {
    list-style: none;
    margin-top: 20px;
}

.tol-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.tol-check-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tol-final-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddygood-717x433.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.tol-final-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

.tol-final-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.tol-btn-large {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.tol-text-center {
    text-align: center;
}

.tol-btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid transparent;
}

.tol-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .tol-two-col {
        flex-direction: column;
    }

    .tol-grid-2, .tol-grid-3 {
        grid-template-columns: 1fr;
    }

    .tol-hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .tol-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .tol-btn-large {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Oaxaca Page Styles */
.oax-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarbabiesmx-1500x916.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oax-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oax-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.oax-section {
    padding: 80px 0;
}

.oax-bg-light {
    background-color: #f9f9f9;
}

.oax-title {
    margin-bottom: 40px;
    text-align: center;
}

.oax-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.oax-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.oax-intro-text p {
    margin-bottom: 20px;
}

.oax-two-col {
    display: flex;
    gap: 50px;
    align-items: center;
}

.oax-img-col {
    flex: 1;
}

.oax-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.oax-text-col {
    flex: 1;
}

.oax-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.oax-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.oax-card:hover {
    transform: translateY(-5px);
}

.oax-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.oax-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.oax-check-list {
    list-style: none;
    margin-top: 20px;
}

.oax-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.oax-check-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.oax-final-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddygood-717x433.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.oax-final-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

.oax-final-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.oax-text-center {
    text-align: center;
}

.oax-btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid transparent;
}

.oax-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .oax-two-col {
        flex-direction: column;
    }

    .oax-grid-2, .oax-grid-3 {
        grid-template-columns: 1fr;
    }

    .oax-hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .oax-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Jalisco Page Styles */
.jal-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddiesach-1500x857.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0;
    text-align: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jal-hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    font-family: 'Playfair Display', serif;
}

.jal-hero-content p {
    font-size: 1.6rem;
    max-width: 850px;
    margin: 0 auto 35px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.jal-section {
    padding: 90px 0;
}

.jal-bg-alt {
    background-color: #f4f4f4;
}

.jal-title {
    margin-bottom: 50px;
    text-align: center;
}

.jal-title h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.jal-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.jal-text-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

.jal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jal-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.jal-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.jal-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.jal-card-body {
    padding: 25px;
}

.jal-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.jal-highlight-box {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-left: 5px solid var(--secondary-color);
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.jal-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.jal-stat-item {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.jal-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.jal-btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jal-btn-cta:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .jal-hero {
        padding: 100px 0;
        min-height: 60vh;
    }
    
    .jal-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .jal-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .jal-title h2 {
        font-size: 2.2rem;
    }
}

/* Blog 40+ Styles */
.blog40-hero-section {
    position: relative;
    background: url('images/confident-1-679x520.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
.blog40-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}
.blog40-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}
.blog40-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}
.blog40-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
}
.blog40-article { padding-bottom: 80px; }
.blog40-content { max-width: 800px; margin: 0 auto; font-size: 1.15rem; line-height: 1.9; color: #444; }
.blog40-intro { font-size: 1.3rem; font-weight: 300; margin-bottom: 40px; border-left: 4px solid var(--primary-color); padding-left: 20px; color: #222; font-style: italic; }
.blog40-heading { color: var(--secondary-color); font-size: 2.2rem; margin-top: 60px; margin-bottom: 25px; font-weight: 600; font-family: 'Playfair Display', serif; }
.blog40-list { list-style-type: none; padding: 0; margin: 30px 0; }
.blog40-list li { margin-bottom: 20px; padding-left: 30px; position: relative; }
.blog40-list li:before { content: '✓'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
.blog40-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 50px 0; }
.blog40-grid-2 img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
.blog40-grid-2 img:hover { transform: translateY(-5px); }
.blog40-btn { display: inline-block; padding: 18px 50px; background-color: var(--primary-color); color: var(--secondary-color); text-decoration: none; font-weight: bold; font-size: 1.2rem; border-radius: 50px; box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); transition: all 0.3s; margin-top: 30px; }
.blog40-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6); color: #fff; }

/* Blog Chat Styles */
.blogchat-article { padding: 60px 0; }
.blogchat-title { font-size: 2.8rem; color: var(--secondary-color); text-align: center; margin-bottom: 10px; }
.blogchat-meta { text-align: center; color: #666; margin-bottom: 40px; font-style: italic; }
.blogchat-hero { margin-bottom: 50px; text-align: center; }
.blogchat-hero img { max-width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.blogchat-content { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: #333; }
.blogchat-heading { color: var(--primary-color); font-size: 2rem; margin-top: 50px; margin-bottom: 20px; }
.blogchat-list { margin-bottom: 30px; }
.blogchat-list li { margin-bottom: 10px; list-style-type: disc; margin-left: 20px; }
.blogchat-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin: 40px 0; }
.blogchat-grid-2 img { width: 100%; border-radius: 8px; }
.blogchat-btn { display: inline-block; padding: 15px 40px; background-color: var(--secondary-color); color: var(--white); text-decoration: none; font-weight: bold; border-radius: 50px; transition: transform 0.3s; }
.blogchat-btn:hover { transform: translateY(-3px); background-color: #333; }

/* Blog BBW vs Black Styles */
.blogbbw-hero-section {
    position: relative;
    background: url('images/sugarmommy344-919x492.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
.blogbbw-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}
.blogbbw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}
.blogbbw-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}
.blogbbw-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
}
.blogbbw-article { padding-bottom: 80px; }
.blogbbw-content { max-width: 800px; margin: 0 auto; font-size: 1.15rem; line-height: 1.9; color: #444; }
.blogbbw-intro { font-size: 1.3rem; font-weight: 300; margin-bottom: 40px; border-left: 4px solid var(--primary-color); padding-left: 20px; color: #222; font-style: italic; }
.blogbbw-heading { color: var(--secondary-color); font-size: 2.2rem; margin-top: 60px; margin-bottom: 25px; font-weight: 600; font-family: 'Playfair Display', serif; }
.blogbbw-list { list-style-type: none; padding: 0; margin: 30px 0; }
.blogbbw-list li { margin-bottom: 20px; padding-left: 30px; position: relative; }
.blogbbw-list li:before { content: '✓'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
.blogbbw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 50px 0; }
.blogbbw-grid-2 img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
.blogbbw-grid-2 img:hover { transform: translateY(-5px); }
.blogbbw-btn { display: inline-block; padding: 18px 50px; background-color: var(--primary-color); color: var(--secondary-color); text-decoration: none; font-weight: bold; font-size: 1.2rem; border-radius: 50px; box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); transition: all 0.3s; margin-top: 30px; }
.blogbbw-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6); color: #fff; }

.blogbbw-subheading { font-size: 1.5rem; color: var(--secondary-color); margin-bottom: 15px; font-weight: 600; }
.blogbbw-check-list { list-style: none; padding: 0; margin: 20px 0; }
.blogbbw-check-list li { padding-left: 30px; position: relative; margin-bottom: 15px; }
.blogbbw-check-list li::before { content: '✓'; color: var(--accent-color); position: absolute; left: 0; font-weight: bold; }
.blogbbw-question-list { list-style: none; padding: 0; margin: 20px 0; background: #f9f9f9; padding: 30px; border-radius: 10px; border-left: 5px solid var(--primary-color); }
.blogbbw-question-list li { margin-bottom: 15px; position: relative; padding-left: 25px; }
.blogbbw-question-list li::before { content: '?'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }
.blogbbw-table { width: 100%; border-collapse: collapse; margin: 30px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.blogbbw-table th, .blogbbw-table td { padding: 15px; border: 1px solid #eee; text-align: left; }
.blogbbw-table th { background-color: var(--secondary-color); color: #fff; }
.blogbbw-table tr:nth-child(even) { background-color: #f9f9f9; }
.blogbbw-features-box { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin: 30px 0; }
.blogbbw-features-box span { background: var(--light-bg); padding: 10px 20px; border-radius: 30px; border: 1px solid #ddd; font-weight: 600; color: #555; }
.error-list li::before { content: '✕'; color: red; }

/* Blog New Sugar Baby Guides Styles */
.blogguides-hero-section {
    position: relative;
    background: url('images/sugarbaby-902x596.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.blogguides-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.blogguides-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.blogguides-main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blogguides-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.blogguides-article {
    padding: 0 20px 80px;
}

.blogguides-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blogguides-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
}

.blogguides-heading {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 50px 0 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.blogguides-subheading {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.blogguides-list, .blogguides-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blogguides-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.blogguides-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blogguides-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.blogguides-check-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.blogguides-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.blogguides-grid-2 img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blogguides-grid-2 img:hover {
    transform: scale(1.02);
}

.blogguides-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.blogguides-type-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.blogguides-type-card:hover {
    transform: translateY(-5px);
}

.blogguides-type-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blogguides-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blogguides-table th, .blogguides-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
}

.blogguides-table th {
    background-color: var(--secondary-color);
    color: #fff;
}

.blogguides-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blogguides-steps {
    counter-reset: guide-counter;
    list-style: none;
    padding: 0;
}

.blogguides-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.blogguides-steps li::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .blog40-grid-2, .blogchat-grid-2, .blogbbw-grid-2, .blogguides-grid-2 { grid-template-columns: 1fr; }
    .blogchat-title { font-size: 2rem; }
    .blog40-main-title, .blogbbw-main-title, .blogguides-main-title { font-size: 2rem; }
    .blog40-hero-section, .blogbbw-hero-section, .blogguides-hero-section { height: 60vh; }
    .blog40-subtitle, .blogbbw-subtitle, .blogguides-subtitle { font-size: 1rem; }
    .blogbbw-table, .blogguides-table { display: block; overflow-x: auto; }
    .blogguides-grid-2.reverse-mobile { display: flex; flex-direction: column-reverse; gap: 30px; }
}

