/* Global Styles */
:root {
    --primary-color: #d92027; /* Red from screenshot */
    --primary-hover: #b91b21;
    --secondary-color: #1a1a1a; /* Dark Black/Grey */
    --accent-color: #c5a47e; /* Gold for text/highlights */
    --text-color: #555;
    --heading-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-bg: #111111;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3rem; text-transform: uppercase; }
h2 { font-size: 2.2rem; text-transform: uppercase; letter-spacing: 1px; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 4px 0;
    transition: 0.4s;
}

.close-menu {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/buenosaires.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    margin-top: 60px; /* Offset for fixed header */
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #eee;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Bottom Divider */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-bottom: 50px solid var(--white);
}

/* Timeline Styles */
.timeline-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
    text-align: left;
}

.timeline-img {
    position: absolute;
    top: 0;
    right: -25px; /* Half of width (50px) */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background-color: var(--primary-color);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 0 4px #ddd;
}

.timeline-item:nth-child(even) .timeline-img {
    left: -25px;
    right: auto;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    width: 100%;
}

.timeline-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-name {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

/* Grid Sections (Places, Profiles, Blog) */
.grid-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.grid-section.dark-bg {
    background-color: var(--secondary-color);
    color: var(--white);
}

.grid-section.dark-bg h2 {
    color: var(--white);
}

.section-title {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Places Card */
.place-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    group: hover;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover img {
    transform: scale(1.1);
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 20px;
    color: var(--white);
    text-align: left;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.place-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

/* Profile Card */
.profile-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    height: 300px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-loc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.profile-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Blog Card */
.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding-top: 15px;
    color: #666;
    display: none;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 60px 20px 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
    }
    
    .timeline-img,
    .timeline-item:nth-child(even) .timeline-img {
        left: -5px;
        right: auto;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .grid-container {
        grid-template-columns: 1fr;
    }

    .hero::after {
        transform: translateX(-50%);
        width: 0; 
        height: 0; 
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 25px solid var(--white);
        background: transparent;
    }
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* About Section (Collage) */
.about-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-images {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
}

.collage-col {
    position: absolute;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
    transition: transform 0.3s;
}

.collage-col:hover {
    z-index: 10;
    transform: scale(1.05);
}

.collage-col:nth-child(1) {
    width: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.collage-col:nth-child(2) {
    width: 55%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.collage-col:nth-child(3) {
    display: none;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.title-with-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.title-with-bar::before {
    content: '';
    display: block;
    width: 5px;
    height: 40px;
    background-color: var(--primary-color);
    margin-right: 15px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(26,26,26,0.8), rgba(26,26,26,0.8)), url('images/buenosaires.jpg') fixed center/cover;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #ddd;
}

/* Alternating Rows */
.alternating-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
    padding: 0 20px;
}

.alt-row.reverse {
    flex-direction: row-reverse;
}

.alt-content {
    flex: 1;
}

.alt-image {
    flex: 1;
    position: relative;
}

.alt-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.alt-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.alt-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.alt-list {
    margin: 20px 0;
}

.alt-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.alt-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 20px;
    right: -11px;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    right: auto;
    left: -11px;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.timeline-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: -40px;
    left: 20px;
}

.timeline-item:nth-child(even) .timeline-img {
    left: auto;
    right: 20px;
}

.timeline-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
}

.timeline-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

/* How To Section (Dark) */
.how-to-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 20px;
}

.how-to-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.how-to-steps {
    flex: 1;
    min-width: 300px;
}

.how-to-steps h2 {
    color: var(--white);
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 40px;
}

.step-row {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-title {
    width: 200px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-desc {
    color: #ccc;
}

/* Member Grid */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.member-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-img {
    height: 200px;
    background-color: #eee;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 15px;
}

.member-name {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-age {
    color: #888;
    font-size: 0.9rem;
}

/* 
   ==========================================================================
   Puerto Madero Luxury Date Ideas Page Styles (.pm- prefix)
   ==========================================================================
*/

.pm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-breadcrumbs-container {
    background-color: #f4f4f4;
    padding: 15px 0;
    margin-top: 70px; /* Offset for fixed header */
    border-bottom: 1px solid #e0e0e0;
}

.pm-breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.pm-breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #999;
}

.pm-breadcrumbs a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.pm-breadcrumbs a:hover {
    color: var(--primary-color);
}

.pm-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/buenosaires-695x412.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.pm-hero-content {
    max-width: 800px;
    padding: 20px;
}

.pm-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pm-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.pm-content-wrapper {
    margin-bottom: 80px;
}

.pm-article {
    max-width: 1000px;
    margin: 0 auto;
}

.pm-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
}

.pm-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pm-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.pm-section:last-of-type {
    border-bottom: none;
}

.pm-bg-light {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 60px 20px;
}

.pm-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.pm-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.pm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pm-reverse {
    direction: rtl; /* Trick to reverse grid columns visually but keep DOM order */
}

.pm-reverse > * {
    direction: ltr; /* Reset direction for content */
}

.pm-image-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pm-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pm-image-box:hover .pm-img {
    transform: scale(1.05);
}

.pm-text-box {
    padding: 20px;
}

.pm-conclusion {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid #eee;
}

.pm-conclusion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pm-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.pm-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.pm-related h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.pm-related ul {
    list-style: none;
    padding: 0;
}

.pm-related li {
    margin-bottom: 10px;
}

.pm-related a {
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}

.pm-related a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Mobile Responsiveness for .pm- pages */
@media (max-width: 768px) {
    .pm-main-title {
        font-size: 2.5rem;
    }
    
    .pm-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pm-reverse {
        direction: ltr;
    }
    
    .pm-hero {
        height: 50vh;
    }
    
    .pm-section-title {
        font-size: 1.8rem;
    }
}
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-name {
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.member-loc {
    font-size: 0.9rem;
    color: #777;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.place-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.place-card:hover img {
    transform: scale(1.1);
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.place-overlay h3 {
    color: white;
    margin-bottom: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.blog-link {
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ */
.faq-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-answer {
    color: #666;
}

/* App Section */
.app-section {
    background-color: var(--white);
    padding: 100px 0;
}

.app-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-text {
    flex: 1;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-height: 500px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 60px 20px 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
        background-position: center top;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-links {
        display: block;
        position: fixed;
        top: 0;
        left: -100%; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background-color: #111; /* Black background */
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        transition: left 0.3s ease;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
        left: 0;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 1rem;
        color: #fff; /* White text */
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }
    
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

    .about-section, .alt-row, .alt-row.reverse, .app-container {
        flex-direction: column;
    }
    
    .collage-col {
        position: static;
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
        align-self: flex-start;
        justify-content: flex-start;
    }
    
    .timeline-item::after {
        left: 11px;
        right: auto;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 11px;
    }
    
    .timeline-content {
        text-align: left;
    }
    
    .timeline-img, .timeline-item:nth-child(even) .timeline-img {
        left: auto;
        right: 20px;
    }
}

/* Meme Page Styles */
.meme-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/social-media-695x486.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px; /* Offset for fixed header */
}

.meme-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.meme-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.meme-content-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.meme-section {
    margin-bottom: 60px;
}

.meme-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.meme-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.meme-img-container {
    margin: 30px 0;
    text-align: center;
}

.meme-img-container img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 500px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.img-caption {
    font-style: italic;
    color: #777;
    margin-top: 10px;
    font-size: 0.9rem;
}

.meme-list ol {
    counter-reset: meme-counter;
    list-style: none;
    padding: 0;
}

.meme-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.meme-list li::before {
    counter-increment: meme-counter;
    content: counter(meme-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.do-col, .dont-col {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.do-col h3 {
    color: #27ae60;
    margin-bottom: 20px;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 10px;
}

.dont-col h3 {
    color: #c0392b;
    margin-bottom: 20px;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 10px;
}

.do-col ul, .dont-col ul {
    list-style-type: none;
    padding-left: 0;
}

.do-col li, .dont-col li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.do-col li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dont-col li::before {
    content: '✕';
    color: #c0392b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .meme-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .meme-hero-content p {
        font-size: 1.2rem;
    }
    
    .dos-donts-grid {
        grid-template-columns: 1fr;
    }
}

/* Sugar Baby Page Styles */
.sb-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/ralsugardaies-944x528.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px;
}

.sb-hero-content {
    max-width: 900px;
}

.sb-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sb-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.sb-hero-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-top: 20px;
}

.sb-section {
    padding: 80px 20px;
}

.sb-bg-light {
    background-color: #f9f9f9;
}

.sb-bg-dark {
    background-color: #222;
    color: var(--white);
}

.sb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.sb-container-column {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sb-text-col {
    flex: 1;
    min-width: 300px;
}

.sb-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sb-text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.sb-img-col {
    flex: 1;
    min-width: 300px;
}

.sb-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sb-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.sb-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    color: var(--text-color);
}

.sb-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.sb-list {
    list-style: none;
    padding: 0;
}

.sb-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    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(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.type-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.type-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.verification-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.sb-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.profile-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
    text-align: left;
}

.profile-info h3 {
    margin: 0;
    color: #333;
}

.profile-info .location {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.term-item {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.term-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Mobile Responsive for Sugar Baby Page */
@media (max-width: 768px) {
    .sb-hero-content {
        padding: 0 10px;
    }

    .sb-hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .sb-hero-content h2 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .sb-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .sb-dual-grid {
        grid-template-columns: 1fr;
    }
    
    .sb-text-col h2 {
        font-size: 2rem;
    }
    
    .step {
        max-width: 100%;
        width: 45%;
    }
}

/* Lesbian Page Styles */
.ls-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/richwomen12-725x544.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px;
}

.ls-hero-content {
    max-width: 900px;
}

.ls-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ls-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.ls-hero-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-top: 20px;
}

.ls-section {
    padding: 80px 20px;
}

.ls-bg-light {
    background-color: #f9f9f9;
}

.ls-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ls-container-column {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ls-text-col {
    flex: 1;
    min-width: 300px;
}

.ls-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ls-text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.ls-img-col {
    flex: 1;
    min-width: 300px;
}

.ls-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ls-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ls-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.ls-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.ls-list {
    list-style: none;
    padding: 0;
}

.ls-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
}

.ls-list li::before {
    content: '�?;
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.ls-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ls-step {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-num {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 0.3;
}

.ls-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.ls-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ls-profile-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ls-profile-card:hover {
    transform: translateY(-5px);
}

.ls-profile-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.ls-profile-info {
    padding: 20px;
    text-align: left;
}

.ls-profile-info h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.ls-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.ls-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ls-tip-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ls-tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ls-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

/* Mobile Responsive for Lesbian Page */
@media (max-width: 768px) {
    .ls-hero-content h1 {
        font-size: 2rem;
    }
    .ls-container {
        flex-direction: column;
        gap: 30px;
    }
    .ls-dual-grid, .ls-benefits-grid {
        grid-template-columns: 1fr;
    }
    .ls-text-col h2 {
        font-size: 2rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .ls-hero-btn {
        margin: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Stories Page Styles */
.st-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/realsugarphoto-829x478.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px;
}

.st-hero-content {
    max-width: 900px;
}

.st-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.st-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
}

.st-section {
    padding: 80px 20px;
}

.st-bg-light {
    background-color: #f9f9f9;
}

.st-bg-dark {
    background-color: #222;
    color: var(--white);
}

.st-bg-dark h2 {
    color: #ffffff;
}

.st-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.st-container-column {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.st-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.st-text-col {
    flex: 1;
}

.st-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.st-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.st-card-simple {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.st-card-simple h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.st-list-large {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.st-list-large li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.st-feature-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.st-feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.st-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.st-story-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.st-story-card:hover {
    transform: translateY(-5px);
}

.st-story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.st-story-content {
    padding: 25px;
    text-align: left;
}

.st-story-content h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.st-meta {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 5px 0 15px;
    font-weight: bold;
}

.st-story-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.st-guidelines-box {
    background: #f0f4f8;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: left;
}

.st-check-list {
    list-style: none;
    padding: 0;
}

.st-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.st-check-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.st-cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/buenosaires-695x412.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.st-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.st-btn-large {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-top: 30px;
    display: inline-block;
}

/* Mobile Responsive for Stories Page */
@media (max-width: 768px) {
    .st-hero-content h1 {
        font-size: 2rem;
    }
    .st-grid-2, .st-grid-3, .st-stories-grid {
        grid-template-columns: 1fr;
    }
    .st-container {
        flex-direction: column;
    }
    .st-intro p {
        font-size: 1rem;
    }
}

/* =========================================
   About Page Styles (.ab- prefix)
   ========================================= */

/* Hero Section */
.ab-hero {
    position: relative;
    background: url('images/buenosaires-695x412.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px; /* Header height */
}

.ab-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ab-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.ab-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.ab-hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.ab-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ab-cta-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Common Layout */
.ab-section {
    padding: 80px 0;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ab-bg-light {
    background-color: #f9f9f9;
}

.ab-bg-dark {
    background-color: #1a1a1a;
    color: #fff;
}

.ab-bg-dark .ab-title {
    color: #ffffff;
}

.ab-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.ab-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #333;
}

.text-white {
    color: #fff !important;
}

.ab-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.ab-bg-dark .ab-content p {
    color: #ccc;
}

/* Grids */
.ab-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ab-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Images */
.ab-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ab-image-center {
    margin-top: 50px;
    text-align: center;
}

.ab-img-wide {
    max-width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

/* Cards (Differentiators) */
.ab-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;
}

.ab-card:hover {
    transform: translateY(-5px);
}

.ab-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4af37; /* Gold accent */
}

/* Members Grid */
.ab-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ab-member-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.ab-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d4af37;
}

.ab-member-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.ab-member-card p {
    font-size: 0.9rem;
    color: #ccc;
}

.ab-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    opacity: 0.7;
}

/* Lists */
.ab-list, .ab-check-list {
    list-style: none;
    padding: 0;
}

.ab-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.ab-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.ab-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* FAQ */
.ab-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.ab-faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ab-faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

/* Final Section */
.ab-final {
    background: #f4f4f4;
    padding: 100px 0;
}

.ab-text-center {
    text-align: center;
}

.ab-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
}

.ab-text-large {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.ab-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ab-btn-lg {
    padding: 15px 50px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ab-hero {
        width: 100%;
        overflow: hidden;
        height: auto;
        min-height: 80vh;
        padding-top: 80px; /* Extra padding to clear header */
        padding-bottom: 60px;
        align-items: flex-start; /* Prevent vertical centering from pushing content up */
    }

    .ab-hero-content {
        margin-top: 20px;
        width: 100%;
        padding: 0 15px;
    }

    .ab-hero-content h1 {
        font-size: 1.8rem !important; /* Force apply */
        padding: 0;
        line-height: 1.3;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .ab-hero-content h2 {
        font-size: 1.1rem !important;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .ab-cta-btn {
        padding: 12px 15px;
        font-size: 1rem;
        width: auto;
        max-width: 100%;
        white-space: normal;
        display: inline-block;
        box-sizing: border-box;
    }
    
    .ab-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .ab-section-title {
        font-size: 1.6rem !important;
        margin-bottom: 30px;
    }

    .ab-title {
        font-size: 1.4rem !important;
        margin-bottom: 15px;
    }

    .ab-card h3 {
        font-size: 1.2rem;
    }
    
    .ab-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .ab-btn-lg {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .ab-img-wide {
        height: 200px;
    }
}

/* =========================================
   Privacy Policy Page Styles (.pr- prefix)
   ========================================= */

/* Hero Section */
.pr-hero {
    position: relative;
    background: url('images/sugarbabiesmx-1500x916.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px; /* Header height */
}

.pr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.pr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.pr-hero-content h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pr-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.pr-cta-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Common Layout */
.pr-section {
    padding: 70px 0;
}

.pr-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pr-bg-light {
    background-color: #fcfcfc;
}

.pr-bg-dark {
    background-color: #222;
    color: #fff;
}

.pr-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.pr-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.pr-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.pr-bg-dark .pr-content p, .pr-bg-dark .pr-text-large {
    color: #ccc;
}

/* Grids */
.pr-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pr-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Images */
.pr-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Cards (Info Collection) */
.pr-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
    border-top: 3px solid #d4af37;
}

.pr-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pr-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.pr-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Lists */
.pr-list-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.pr-check-list {
    list-style: none;
    padding: 0;
}

.pr-check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.pr-check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #2ecc71;
}

.pr-ordered-list {
    padding-left: 20px;
    color: #555;
}

.pr-ordered-list li {
    margin-bottom: 15px;
}

.pr-security-list {
    list-style: none;
    padding: 0;
}

.pr-security-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.pr-security-list li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Rights Grid */
.pr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pr-right-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pr-right-item h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pr-right-item p {
    color: #bbb;
    font-size: 0.9rem;
}

/* Cookies */
.pr-cookie-item h4 {
    color: #333;
    margin-bottom: 5px;
}

.pr-note {
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}

/* Safety Tips */
.pr-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pr-tip-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.pr-tip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pr-tip-card h3 {
    padding: 20px 20px 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
}

.pr-tip-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #666;
}

/* Final Section */
.pr-final {
    padding: 80px 0;
}

.pr-text-center {
    text-align: center;
}

.pr-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pr-text-large {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pr-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pr-btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pr-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pr-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .pr-section-title {
        font-size: 2rem;
    }
    
    .pr-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .pr-btn-lg {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* =========================================
   Safety Page Styles (.sf- prefix)
   ========================================= */

/* Hero Section */
.sf-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('images/buenosaires.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 80px; /* Offset fixed header */
}

.sf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.sf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.sf-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sf-hero-content h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.sf-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sf-cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.sf-cta-btn:hover {
    transform: translateY(-3px);
}

/* General Layout */
.sf-section {
    padding: 80px 0;
}

.sf-bg-white {
    background-color: #ffffff;
}

.sf-bg-light {
    background-color: #f8f9fa;
}

.sf-bg-dark {
    background-color: #1a1a1a;
    color: #fff;
}

.sf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sf-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.sf-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d92027;
    margin: 20px auto 0;
}

.sf-bg-dark .sf-section-title {
    color: #fff;
}

.sf-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Grids */
.sf-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sf-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sf-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Images */
.sf-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sf-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sf-image:hover .sf-img-responsive {
    transform: scale(1.03);
}

/* Content & Lists */
.sf-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

.sf-list {
    list-style: none;
    padding: 0;
}

.sf-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
}

.sf-list li::before {
    content: '�?;
    color: #d92027;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.sf-check-list {
    list-style: none;
    padding: 0;
}

.sf-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #444;
}

.sf-check-list li::before {
    content: '�?;
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Cards */
.sf-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.sf-card:hover {
    transform: translateY(-5px);
}

.sf-card h3, .sf-card h4 {
    color: #d92027;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sf-warning-card {
    background: #fff;
    padding: 25px;
    border-left: 4px solid #d92027;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sf-warning-card h4 {
    color: #d92027;
    margin-bottom: 10px;
}

/* Steps (Checklist) */
.sf-step {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.sf-step-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.sf-step h4 {
    color: #fff;
    margin-bottom: 10px;
}

.sf-step p {
    color: #ccc;
    font-size: 0.9rem;
}

/* CTA Section */
.sf-cta-section {
    background: linear-gradient(135deg, #d92027 0%, #8b0000 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.sf-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sf-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}

.sf-btn-lg {
    background: #fff;
    color: #d92027;
    padding: 18px 50px;
    font-size: 1.2rem;
    border: none;
    font-weight: 700;
}

.sf-btn-lg:hover {
    background: #f0f0f0;
    color: #b91b21;
    transform: scale(1.05);
}

.sf-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .sf-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 20px 60px; /* More top padding for mobile header */
    }

    .sf-hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .sf-hero-content h2 {
        font-size: 1.4rem;
    }

    .sf-section {
        padding: 50px 0;
    }

    .sf-grid-2, .sf-grid-3, .sf-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .sf-section-title {
        font-size: 2rem;
    }

    .sf-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .sf-content {
        text-align: left; /* Keep text left aligned for readability */
    }
    
    .sf-cta-section {
        padding: 60px 20px;
    }
    
    .sf-cta-section h2 {
        font-size: 2rem;
    }
    
    .sf-btn-lg {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* =========================================
   Puerto Madero Blog Post Styles (.pm- prefix)
   ========================================= */

/* Breadcrumbs */
.pm-breadcrumbs {
    background-color: #f4f4f4;
    padding: 15px 0;
    margin-top: 80px; /* Offset fixed header */
    font-size: 0.9rem;
    color: #666;
}

.pm-breadcrumbs a {
    color: #d92027;
    text-decoration: none;
    font-weight: 600;
}

.pm-breadcrumbs a:hover {
    text-decoration: underline;
}

/* Hero Section */
.pm-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('images/buenosaires.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.pm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.pm-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.pm-hero-content h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.pm-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pm-cta-btn {
    padding: 12px 35px;
    font-size: 1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pm-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(217, 32, 39, 0.4);
}

/* General Layout */
.pm-section {
    padding: 70px 0;
}

.pm-bg-white { background-color: #ffffff; }
.pm-bg-light { background-color: #f9f9f9; }
.pm-bg-dark { background-color: #222; color: #fff; }

.pm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.pm-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #d92027;
    margin: 15px auto 0;
}

.pm-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.pm-bg-dark .pm-title { color: #fff; }
.text-white { color: #fff !important; }
.pm-text-center { text-align: center; max-width: 800px; margin: 0 auto 40px; }

/* Grids */
.pm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pm-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Images */
.pm-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pm-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.pm-image:hover .pm-img-responsive {
    transform: scale(1.05);
}

/* Content Elements */
.pm-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.pm-bg-dark .pm-content p { color: #ccc; }

.pm-list, .pm-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pm-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
}

.pm-list li::before {
    content: '�?;
    color: #d92027;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pm-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.pm-check-list li::before {
    content: '�?;
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Cards */
.pm-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.pm-card:hover { transform: translateY(-5px); }
.pm-card h3 { color: #d92027; margin-bottom: 15px; font-size: 1.3rem; }

.pm-image-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.pm-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pm-image-card h4 {
    padding: 15px;
    color: #333;
    font-size: 1.2rem;
}

.pm-info-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-top: 3px solid #d92027;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.pm-info-card h4 { color: #d92027; margin-bottom: 10px; }

.pm-quote-box {
    background: #f8f8f8;
    border-left: 4px solid #d92027;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-style: italic;
    color: #444;
}

/* CTA Section */
.pm-cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/buenosaires.jpg') center/cover fixed;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.pm-cta-section h2 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.pm-cta-section h3 { font-size: 1.8rem; margin-bottom: 30px; color: #f0f0f0; font-weight: 300; }
.pm-cta-section p { max-width: 700px; margin: 0 auto 40px; font-size: 1.2rem; }

.pm-btn-lg {
    background: #d92027;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: 2px solid #d92027;
}

.pm-btn-lg:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pm-breadcrumbs { margin-top: 70px; padding: 10px 20px; }
    
    .pm-hero { height: auto; padding: 100px 20px 60px; }
    .pm-hero-content h1 { font-size: 2.2rem; }
    .pm-hero-content h2 { font-size: 1.3rem; }
    
    .pm-section { padding: 50px 0; }
    
    .pm-grid-2, .pm-grid-3, .pm-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .pm-section-title { font-size: 2rem; }
    .pm-title { font-size: 1.8rem; text-align: center; }
    
    .pm-content { text-align: left; }
    
    .pm-cta-section h2 { font-size: 2rem; }
    .pm-cta-section h3 { font-size: 1.4rem; }
    .pm-btn-lg { width: 100%; font-size: 1rem; }
}

/* Balance Career Companionship Page Styles */
.bcc-breadcrumbs-container {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-top: 80px;
}

.bcc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bcc-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
}

.bcc-breadcrumbs li::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}

.bcc-breadcrumbs li:last-child::after {
    display: none;
}

.bcc-breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.bcc-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/1540367086024-depositphotos-180637734-m-2015-900x601.jpeg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.bcc-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.bcc-main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bcc-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.bcc-content-wrapper {
    margin-bottom: 80px;
}

.bcc-article {
    max-width: 1000px;
    margin: 0 auto;
}

.bcc-intro, .bcc-text, .bcc-full-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.bcc-intro {
    font-size: 1.25rem;
    color: #222;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.bcc-section {
    margin: 60px 0;
    padding: 40px 0;
}

.bcc-bg-light {
    position: relative;
    z-index: 1;
}

.bcc-bg-light::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    background-color: #fafafa;
    z-index: -1;
}

.bcc-section-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.bcc-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.bcc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bcc-reverse {
    direction: rtl;
}

.bcc-reverse > * {
    direction: ltr;
}

.bcc-image-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.bcc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bcc-image-box:hover .bcc-img {
    transform: scale(1.05);
}

.bcc-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.bcc-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.bcc-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bcc-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.bcc-conclusion {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #eee;
}

.bcc-conclusion-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.bcc-cta-wrapper {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .bcc-main-title {
        font-size: 2rem;
    }
    
    .bcc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bcc-reverse {
        direction: ltr;
    }
    
    .bcc-image-box {
        height: 250px;
    }
    
    .bcc-intro, .bcc-text, .bcc-full-text {
        font-size: 1rem;
    }
}

/* Attract High Value Sugar Mommy Page Styles */
.ahv-breadcrumbs-container {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-top: 80px;
}

.ahv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ahv-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
}

.ahv-breadcrumbs li::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}

.ahv-breadcrumbs li:last-child::after {
    display: none;
}

.ahv-breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.ahv-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugar-daddy-dating-e1471242808605-860x522.jpeg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.ahv-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.ahv-main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ahv-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.ahv-content-wrapper {
    margin-bottom: 80px;
}

.ahv-article {
    max-width: 1000px;
    margin: 0 auto;
}

.ahv-intro, .ahv-text, .ahv-full-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.ahv-intro {
    font-size: 1.25rem;
    color: #222;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.ahv-section {
    margin: 60px 0;
    padding: 40px 0;
}

.ahv-bg-light {
    background-color: #fafafa;
    padding: 60px 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 8px;
}

.ahv-section-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ahv-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.ahv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ahv-reverse {
    direction: rtl;
}

.ahv-reverse > * {
    direction: ltr;
}

.ahv-image-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.ahv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ahv-image-box:hover .ahv-img {
    transform: scale(1.05);
}

.ahv-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ahv-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.ahv-list li::before {
    content: "�?;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ahv-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.ahv-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.ahv-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ahv-text-center {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.ahv-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.ahv-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.ahv-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.ahv-comparison-table th, .ahv-comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ahv-comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.ahv-comparison-table tr:last-child td {
    border-bottom: none;
}

.ahv-comparison-table tr:hover {
    background-color: #f9f9f9;
}

.ahv-message-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.ahv-message {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 4px;
}

.ahv-message.weak {
    background: #ffebee;
    border-left: 4px solid #ef5350;
}

.ahv-message.strong {
    background: #e8f5e9;
    border-left: 4px solid #66bb6a;
}

.ahv-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.ahv-col {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.ahv-col h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ahv-image-full {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ahv-img-wide {
    width: 100%;
    height: auto;
    display: block;
}

.ahv-alert-box {
    background: #fff3e0;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ffe0b2;
    margin-top: 30px;
}

.ahv-alert-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ahv-alert-box li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.ahv-conclusion {
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.ahv-conclusion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.ahv-conclusion-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ahv-text-box {
    text-align: left;
    padding: 0 20px;
}

.ahv-simple-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.ahv-simple-list li {
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
}

.ahv-simple-list li::before {
    content: "\2713";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 1.2rem;
}

.ahv-cta-wrapper {
    margin-top: 40px;
}

.ahv-btn-lg {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.ahv-btn-lg:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .ahv-main-title {
        font-size: 2rem;
    }
    
    .ahv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ahv-reverse {
        direction: ltr;
    }
    
    .ahv-image-box {
        height: 250px;
    }
    
    .ahv-intro, .ahv-text, .ahv-full-text {
        font-size: 1rem;
    }

    .ahv-cards-container {
        grid-template-columns: 1fr;
    }

    .ahv-grid-3 {
        grid-template-columns: 1fr;
    }

    .ahv-comparison-table th, .ahv-comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .ahv-bg-light {
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px;
    }

    .ahv-conclusion {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .ahv-conclusion-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .ahv-text-box {
        padding: 0;
    }

    .ahv-simple-list {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/buenosaires.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px; /* Offset for fixed header */
}

.blog-page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff; /* Explicitly set to white */
}

.blog-page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.blog-grid-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

/* Scoped Fonts for Blog Page */
.blog-page {
    font-family: 'Lato', sans-serif;
}

.blog-page h1, .blog-page h2, .blog-page h3, .blog-page h4 {
    font-family: 'Playfair Display', serif;
}
