/* Global Styles */
:root {
    --primary-color: #c5a059; /* Gold */
    --secondary-color: #222222; /* Dark Grey/Black */
    --accent-color: #e6b800; /* Lighter Gold */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #dddddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-top: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin-bottom: 1rem; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(197, 160, 89, 0.1);
}

.lang-switch select {
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding: 0;
    }

    .nav-links.active {
        max-height: 500px; /* Approximate max height */
        padding: 20px 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddiescom1-582x518.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform 0.2s;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform var(--transition-speed);
}

.split-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Members/Profiles Section */
.members {
    padding: 60px 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.members-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.member-type-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.member-type-card:hover {
    transform: translateY(-5px);
}

.member-type-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.member-type-info {
    padding: 20px;
}

.member-type-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.profile-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: box-shadow var(--transition-speed);
}

.profile-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.profile-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.profile-details {
    color: #777;
    font-size: 0.9rem;
    margin: 5px 0 15px;
}

.profile-quote {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Content Sections (How it works, etc.) */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

.text-block {
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.how-it-works-item {
    width: calc(33.333% - 20px);
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.how-it-works-item:nth-child(n+4) {
    width: calc(50% - 15px);
    max-width: 400px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.city-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.city-info h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.city-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Pricing */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.duration {
    color: #777;
}

.pricing-features li {
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

/* Blog Preview */
.blog-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #aaa;
    padding: 50px 0 20px;
}

.footer-content {
    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;
}

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

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .cities-grid, .profiles-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .members-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works-item, .how-it-works-item:nth-child(n+4) {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cities-grid, .profiles-grid, .members-type-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .split-section {
        flex-direction: column;
    }
    
    .how-it-works-item, .how-it-works-item:nth-child(n+4) {
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Page Specific */
.page-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin: 0;
}

.content-wrapper {
    padding: 60px 0;
}

/* Verification Page Styles */
.verify-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/2e7660a091317963c963b87c0b809623-1080x1080.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.verify-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.verify-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.verify-card:hover {
    transform: translateY(-5px);
}

.verify-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.verify-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.verification-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.type-card {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.type-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.id-list {
    list-style: none;
    padding: 0;
}

.id-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.id-list li:before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 10px;
    font-weight: bold;
}

.verify-faq-item {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 20px;
}

.verify-faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.verify-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.verify-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .verification-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .verify-hero h1 {
        font-size: 2rem;
    }
    .verification-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Sugar Daddy Page Specific Styles */
.sd-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddyfinder-1500x754.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.sd-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.sd-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.sd-section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sd-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sd-card:hover {
    transform: translateY(-5px);
}

.sd-card-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.sd-card-content {
    padding: 20px;
}

.sd-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.sd-quote-card {
    background: #fdfbfb;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.sd-meme-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sd-meme-item:hover {
    transform: translateY(-5px);
}

.sd-meme-img {
    width: 100%;
    height: auto;
    display: block;
}

.sd-meme-caption {
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--secondary-color);
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.sd-text-block {
    margin-bottom: 60px;
}

.sd-text-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sd-content-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .sd-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sd-grid-2, .sd-grid-3 {
        grid-template-columns: 1fr;
    }
    .sd-hero h1 {
        font-size: 2.2rem;
    }
}

/* Sugar Baby Page Styles */
.sb-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardatingterm-865x411.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.sb-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.sb-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sb-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.sb-section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sb-text-block {
    margin-bottom: 60px;
}

.sb-text-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sb-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%;
}

.sb-card:hover {
    transform: translateY(-5px);
}

.sb-card-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.sb-card-content {
    padding: 20px;
}

.sb-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.sb-content-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sb-list {
    list-style: none;
    padding: 0;
}

.sb-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.sb-list li::before {
    content: '♥';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.sb-check-list {
    list-style: none;
    padding: 0;
}

.sb-check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.sb-check-list li::before {
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sb-alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.sb-faq {
    margin-top: 20px;
}

.sb-faq-item {
    background: #fdfbfb;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sb-faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sb-faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.sb-meme-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    text-align: center;
}

.sb-meme-img {
    width: 100%;
    height: auto;
    display: block;
}

.sb-quote-text {
    padding: 20px;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fdfbfb;
}

.sb-icon-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sb-icon-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .sb-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sb-hero h1 {
        font-size: 2.2rem;
    }
    .sb-grid-2, .sb-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* App Page Styles */
.app-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddiescom18-700x792.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.app-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.app-hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.app-section {
    padding: 60px 0;
}

.app-bg-light {
    background-color: var(--light-bg);
}

.app-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.app-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.app-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.app-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.app-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.app-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.app-step-card:hover {
    transform: translateY(-5px);
}

.app-step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-feature-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.app-feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.app-pricing-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.app-pricing-column {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.app-pricing-column h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.app-pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.app-pricing-card.featured {
    border-color: var(--primary-color);
    background-color: rgba(197, 160, 89, 0.05);
    transform: scale(1.02);
}

.app-price-header {
    font-weight: bold;
    color: var(--secondary-color);
}

.app-price-amount {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.app-price-desc {
    font-size: 0.8rem;
    color: #777;
}

.app-pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
}

.app-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
    position: relative;
}

.app-review-card:before {
    content: "“";
    font-size: 4rem;
    color: #eee;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.app-review-author {
    margin-top: 15px;
    font-weight: bold;
    text-align: right;
    color: var(--primary-color);
    font-style: normal;
}

.app-start-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.app-start-item {
    flex: 1;
}

.app-story-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.app-cta-section {
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.app-cta-section h2 {
    color: var(--white);
}

.app-links a {
    color: var(--primary-color);
    margin: 0 10px;
}

.app-small-text {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #ccc;
}

.app-small-text a {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .app-steps-grid, .app-features-grid, .app-reviews-grid, .app-pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-hero h1 {
        font-size: 2.2rem;
    }
    
    .app-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .app-steps-grid, .app-features-grid, .app-reviews-grid, .app-pricing-container {
        grid-template-columns: 1fr;
    }
    
    .order-1-mobile {
        order: 1;
    }
    
    .order-2-mobile {
        order: 2;
    }
    
    .app-start-steps {
        flex-direction: column;
    }
}

/* Sugar Mommy Page Styles */
.sm-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddiescom22-566x573.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.sm-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.sm-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.sm-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.sm-cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
}

.sm-section {
    padding: 60px 0;
}

.sm-bg-light {
    background-color: #f9f9f9;
}

.sm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sm-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.sm-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sm-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sm-section-title h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sm-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.sm-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sm-table th, .sm-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sm-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.sm-table tr:hover {
    background-color: #f5f5f5;
}

.sm-mt-4 {
    margin-top: 2rem;
}

.sm-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sm-step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.sm-step-card:hover {
    transform: translateY(-5px);
}

.sm-step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.sm-subtitle {
    text-align: center;
    margin: 40px 0 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.sm-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sm-quote-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    font-style: italic;
    border-left: 5px solid var(--primary-color);
}

.sm-quote-card p {
    margin-bottom: 15px;
}

.sm-quote-card span {
    display: block;
    color: var(--secondary-color);
    font-weight: bold;
    font-style: normal;
}

.sm-center-image {
    text-align: center;
}

.sm-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.sm-story-card {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sm-story-img {
    width: 40%;
    object-fit: cover;
}

.sm-story-content {
    padding: 20px;
    width: 60%;
}

.sm-story-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sm-cta-section {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.sm-cta-section h2 {
    color: var(--white);
}

.sm-cta-section .btn {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 20px;
    display: inline-block;
}

.sm-cta-section .btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Sugar Mommy Responsive Styles */
@media (max-width: 992px) {
    .sm-hero h1 {
        font-size: 2.2rem;
    }
    
    .sm-steps-grid, .sm-quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sm-stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sm-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .sm-steps-grid, .sm-quotes-grid {
        grid-template-columns: 1fr;
    }
    
    .sm-story-card {
        flex-direction: column;
    }
    
    .sm-story-img {
        width: 100%;
        height: 200px;
    }
    
    .sm-story-content {
        width: 100%;
    }
    
    .order-1-mobile {
        order: 1;
    }
    
    .order-2-mobile {
        order: 2;
    }
}

/* Zürich Page Styles */
.zurich-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Zürich.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.zurich-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: #ffffff;
}

.zurich-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.zurich-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* White text */
}

.zurich-bg-light {
    background-color: #222222; /* Slightly darker/lighter contrast */
}

.zurich-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.zurich-content h2 {
    color: var(--primary-color); /* Gold */
    margin-bottom: 20px;
    font-size: 2rem;
}

.zurich-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #eeeeee; /* Off-white for readability */
}

.zurich-content a {
    color: var(--primary-color);
}

.zurich-content a:hover {
    color: var(--white);
}

.zurich-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    object-fit: cover;
    height: 100%;
    max-height: 400px;
}

.zurich-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.zurich-card {
    background: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.zurich-card:hover {
    transform: translateY(-5px);
    background: #444444;
}

.zurich-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.zurich-card p {
    color: #dddddd;
}

.zurich-clubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.zurich-club-card {
    background: #333333;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    color: #ffffff;
}

.zurich-club-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.zurich-club-address {
    font-style: italic;
    color: #aaaaaa;
    margin-bottom: 5px;
}

.zurich-club-hours {
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.zurich-club-type {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

.zurich-info-text {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #aaaaaa;
}

.zurich-allowance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.zurich-allowance-card {
    background: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #444444;
    transition: all 0.3s ease;
    color: #ffffff;
}

.zurich-allowance-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1;
    background: #2a2a2a;
}

.zurich-allowance-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.zurich-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.zurich-allowance-card p {
    color: #dddddd;
}

.zurich-cta-section {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardaddiescom42-841x1500.jpeg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.zurich-cta-section h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.zurich-cta-section p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.zurich-cta-buttons {
    margin-top: 30px;
}

.zurich-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.zurich-section-title h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.zurich-section-title p {
    color: #aaaaaa;
}

/* Responsive Styles for Zürich Page */
@media (max-width: 992px) {
    .zurich-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .zurich-image {
        margin-bottom: 20px;
    }
    
    .order-2-mobile {
        order: 2;
    }
    
    .order-1-mobile {
        order: 1;
    }
    
    .zurich-clubs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zurich-hero-content h1 {
        font-size: 2rem;
    }
    
    .zurich-grid-3, .zurich-allowance-grid {
        grid-template-columns: 1fr;
    }
    
    .zurich-allowance-card.featured {
        transform: none;
    }
}

/* Genf Page Styles */
.genf-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Genf.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.genf-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.genf-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.genf-cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 10px;
}

.genf-section {
    padding: 60px 0;
}

.genf-bg-light {
    background-color: var(--light-bg);
}

.genf-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.genf-grid-2.reverse .genf-image {
    order: 2;
}

.genf-grid-2.reverse .genf-content {
    order: 1;
}

.genf-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.genf-content p {
    margin-bottom: 15px;
}

/* Sicherheitstipps Erste Date Page Styles */
.erste-date-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugar-baby-sugar-daddy-700x500.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0;
    text-align: center;
    margin-bottom: 40px;
}

.erste-date-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.erste-date-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.erste-date-container {
    max-width: 1000px; /* Slightly narrower for reading */
    margin: 0 auto;
    padding: 0 20px;
}

.erste-date-breadcrumb {
    display: flex;
    list-style: none;
    padding: 15px 0;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.erste-date-breadcrumb li::after {
    content: "›";
    margin: 0 10px;
    color: #999;
}

.erste-date-breadcrumb li:last-child::after {
    content: "";
}

.erste-date-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.erste-date-content-block {
    margin-bottom: 50px;
}

.erste-date-content-block h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.erste-date-content-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.erste-date-content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.erste-date-image-full {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.erste-date-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.erste-date-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.erste-date-grid-item {
    text-align: center;
}

.erste-date-grid-item img {
    width: 100%;
    height: 350px; /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.erste-date-grid-item .img-caption {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.erste-date-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.erste-date-table th, .erste-date-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.erste-date-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.erste-date-table tr:hover {
    background-color: #fafafa;
}

.erste-date-check-list {
    list-style: none;
    margin: 20px 0;
}

.erste-date-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.erste-date-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.erste-date-safety-box {
    background-color: #fff8e6;
    border: 1px solid #ffeeba;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.erste-date-safety-box h3 {
    color: #856404;
    margin-top: 0;
}

.erste-date-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
}

.erste-date-cta p {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Responsive for Erste Date */
@media (max-width: 992px) {
    .erste-date-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .erste-date-grid-images {
        grid-template-columns: 1fr;
    }
    
    .erste-date-hero {
        padding: 100px 0;
    }
    
    .erste-date-hero h1 {
        font-size: 2rem;
    }
    
    .erste-date-content-block h2 {
        font-size: 1.8rem;
    }
}    line-height: 1.6;
    color: var(--text-color);
}

.genf-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.genf-content a:hover {
    text-decoration: underline;
}

.genf-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 100%;
    max-height: 400px;
}

.genf-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.genf-section-title h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.genf-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.genf-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.genf-card:hover {
    transform: translateY(-5px);
}

.genf-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.genf-list {
    list-style: none;
    padding: 0;
}

.genf-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.genf-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.genf-cta-section {
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.genf-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.genf-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Styles for Genf Page */
@media (max-width: 992px) {
    .genf-grid-2 {
        grid-template-columns: 1fr;
    }

    .genf-grid-2.reverse .genf-image {
        order: unset; /* Reset order for mobile */
    }

    .genf-grid-2.reverse .genf-content {
        order: unset;
    }
    
    .genf-image {
        margin-bottom: 20px;
    }

    .genf-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .genf-hero-content h1 {
        font-size: 2rem;
    }
}

/* Basel Page Styles */
.basel-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Basel.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.basel-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.basel-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.basel-cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 10px;
}

.basel-section {
    padding: 60px 0;
}

.basel-bg-light {
    background-color: var(--light-bg);
}

.basel-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.basel-grid-2.reverse .basel-image {
    order: 2;
}

.basel-grid-2.reverse .basel-content {
    order: 1;
}

.basel-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.basel-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.basel-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.basel-content a:hover {
    text-decoration: underline;
}

.basel-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 100%;
    max-height: 400px;
}

.basel-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.basel-section-title h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.basel-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.basel-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.basel-card:hover {
    transform: translateY(-5px);
}

.basel-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.basel-list {
    list-style: none;
    padding: 0;
}

.basel-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.basel-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.basel-cta-section {
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.basel-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.basel-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Basel Specific: Text Box for Section 4 */
.basel-text-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}

.basel-text-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Responsive Styles for Basel Page */
@media (max-width: 992px) {
    .basel-grid-2 {
        grid-template-columns: 1fr;
    }

    .basel-grid-2.reverse .basel-image {
        order: unset; 
    }

    .basel-grid-2.reverse .basel-content {
        order: unset;
    }
    
    .basel-image {
        margin-bottom: 20px;
    }

    .basel-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .basel-hero-content h1 {
        font-size: 2rem;
    }
}

/* Luzern Page Styles */
.luzern-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Luzern.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.luzern-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.luzern-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.luzern-cta-buttons .btn {
    margin: 0 10px;
}

.luzern-section {
    padding: 60px 0;
}

.luzern-bg-light {
    background-color: var(--light-bg);
}

.luzern-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.luzern-grid-2.reverse .luzern-image {
    order: 2;
}

.luzern-grid-2.reverse .luzern-content {
    order: 1;
}

.luzern-content h2, .luzern-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.luzern-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.luzern-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.luzern-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.luzern-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.luzern-card:hover {
    transform: translateY(-5px);
}

.luzern-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.luzern-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.luzern-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.luzern-list li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.luzern-cta-center {
    text-align: center;
    margin-top: 40px;
}

.luzern-text-block {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.luzern-card-simple {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.luzern-card-simple h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.luzern-content-full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.luzern-cta-final {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.luzern-cta-final h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.luzern-cta-final p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.luzern-cta-final .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Luzern Responsive */
@media (max-width: 992px) {
    .luzern-grid-2 {
        grid-template-columns: 1fr;
    }

    .luzern-grid-2.reverse .luzern-image {
        order: unset; 
    }

    .luzern-grid-2.reverse .luzern-content {
        order: unset;
    }
    
    .luzern-image {
        margin-bottom: 20px;
    }

    .luzern-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .luzern-hero-content h1 {
        font-size: 2rem;
    }
}

/* Bern Page Styles */
.bern-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Bern.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.bern-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.bern-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bern-cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin: 10px;
}

.bern-section {
    padding: 60px 0;
}

.bern-bg-light {
    background-color: #f9f9f9;
}

.bern-section h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.bern-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bern-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bern-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.bern-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
    object-fit: cover;
}

.bern-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.bern-card:hover {
    transform: translateY(-5px);
}

.bern-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.bern-card-simple {
    background: transparent;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.bern-card-simple h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bern-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.bern-list li {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.bern-content-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bern-cta-final {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Bern.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.bern-cta-final h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.bern-cta-final p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Bern Responsive Styles */
@media (max-width: 992px) {
    .bern-grid-2 {
        grid-template-columns: 1fr;
    }

    .bern-grid-2.reverse .bern-image {
        order: unset; 
    }

    .bern-grid-2.reverse .bern-content {
        order: unset;
    }
    
    .bern-image {
        margin-bottom: 20px;
    }

    .bern-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bern-hero-content h1 {
        font-size: 2rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarbabymsnd-1-1103x819.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-color);
}

/* Blog Responsive Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Sugar Dating Etikette Page Styles */
.etikette-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddybenefits-503x584.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.etikette-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.etikette-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.etikette-breadcrumb {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    color: #666;
}

.etikette-breadcrumb li {
    margin-right: 10px;
}

.etikette-breadcrumb li:after {
    content: '>';
    margin-left: 10px;
    color: #ccc;
}

.etikette-breadcrumb li:last-child:after {
    content: '';
}

.etikette-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.etikette-breadcrumb a:hover {
    color: var(--primary-color);
}

.etikette-section {
    padding: 40px 0 80px;
    background-color: #fcfcfc;
}

.etikette-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.etikette-content-block {
    margin-bottom: 50px;
}

.etikette-content-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.etikette-content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.etikette-image-full {
    margin: 40px 0;
    text-align: center;
}

.etikette-image-full img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.etikette-comparison-table {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.etikette-col-do, .etikette-col-dont {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
}

.etikette-col-do {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #c8e6c9;
}

.etikette-col-dont {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #ffcdd2;
}

.etikette-col-do h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.etikette-col-dont h3 {
    color: #c62828;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.etikette-col-do ul, .etikette-col-dont ul {
    list-style: none;
    padding: 0;
}

.etikette-col-do li, .etikette-col-dont li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.etikette-col-do li:before {
    content: '✓';
    color: #2e7d32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.etikette-col-dont li:before {
    content: '✕';
    color: #c62828;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.etikette-list {
    list-style: none;
    padding: 0;
}

.etikette-list li {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.etikette-simple-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.etikette-simple-table th, .etikette-simple-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.etikette-simple-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: bold;
}

.etikette-simple-table tr:hover {
    background-color: #f5f5f5;
}

.etikette-cta {
    text-align: center;
    background: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.etikette-cta p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Etikette Responsive Styles */
@media (max-width: 992px) {
    .etikette-comparison-table {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .etikette-container {
        padding: 20px;
    }
    
    .etikette-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .etikette-simple-table {
        display: block;
        overflow-x: auto;
    }
}

/* Sugar Baby Definition Page Styles */
.mythen-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarbabytype-650x468.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.mythen-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.mythen-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mythen-breadcrumb {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    color: #666;
}

.mythen-breadcrumb li {
    margin-right: 10px;
}

.mythen-breadcrumb li:after {
    content: '>';
    margin-left: 10px;
    color: #ccc;
}

.mythen-breadcrumb li:last-child:after {
    content: '';
}

.mythen-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.mythen-breadcrumb a:hover {
    color: var(--primary-color);
}

.mythen-section {
    padding: 40px 0 80px;
    background-color: #fcfcfc;
}

.mythen-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.mythen-content-block {
    margin-bottom: 50px;
}

.mythen-content-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.mythen-content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.mythen-image-full {
    margin: 40px 0;
    text-align: center;
}

.mythen-image-full img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.mythen-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.mythen-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mythen-grid-item .img-caption {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.mythen-reality-box {
    background-color: #f9f9f9;
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    margin-top: 20px;
}

.mythen-reality-box h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.mythen-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mythen-table th, .mythen-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mythen-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.mythen-list {
    list-style: none;
    padding: 0;
}

.mythen-list li {
    background: #fff0f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    padding-left: 40px;
}

.mythen-list li:before {
    content: '♥';
    position: absolute;
    left: 15px;
    color: var(--primary-color);
}

.mythen-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.mythen-cta p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

/* Mythen Responsive Styles */
@media (max-width: 992px) {
    .mythen-grid-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mythen-container {
        padding: 20px;
    }
    
    .mythen-hero-content h1 {
        font-size: 2rem;
    }
    
    .mythen-table {
        display: block;
        overflow-x: auto;
    }
}

/* Sugar Daddy Finding Guide Page Styles */
.finden-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddyfinder-1500x754.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.finden-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.finden-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.finden-breadcrumb {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    color: #666;
}

.finden-breadcrumb li {
    margin-right: 10px;
}

.finden-breadcrumb li:after {
    content: '>';
    margin-left: 10px;
    color: #ccc;
}

.finden-breadcrumb li:last-child:after {
    content: '';
}

.finden-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.finden-breadcrumb a:hover {
    color: var(--primary-color);
}

.finden-section {
    padding: 40px 0 80px;
    background-color: #fcfcfc;
}

.finden-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.finden-content-block {
    margin-bottom: 50px;
}

.finden-content-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.finden-content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.finden-content-block h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 25px;
}

.finden-image-full {
    margin: 40px 0;
    text-align: center;
}

.finden-image-full img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.finden-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.finden-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.finden-grid-item .img-caption {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

.finden-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.finden-table th, .finden-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.finden-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.finden-check-list {
    list-style: none;
    padding: 0;
}

.finden-check-list li {
    background: #e8f5e9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    padding-left: 40px;
}

.finden-check-list li:before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #2e7d32;
    font-weight: bold;
}

.finden-list {
    list-style: none;
    padding: 0;
}

.finden-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.finden-list li strong {
    color: var(--primary-color);
}

.finden-safety-box {
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.finden-safety-box h3 {
    color: #e65100;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.finden-safety-box h3:before {
    content: '⚠️';
    margin-right: 10px;
}

.finden-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.finden-cta p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

/* Finden Responsive Styles */
@media (max-width: 992px) {
    .finden-grid-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .finden-container {
        padding: 20px;
    }
    
    .finden-hero-content h1 {
        font-size: 2rem;
    }
    
    .finden-table {
        display: block;
        overflow-x: auto;
    }
}

/* Zürich Date Ideas Page Styles */
.zurich-date-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Zürich.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0;
    text-align: center;
}

.zurich-date-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.zurich-date-hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.zurich-date-breadcrumb {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #eee;
}

.zurich-date-breadcrumb li {
    margin-right: 10px;
}

.zurich-date-breadcrumb li:after {
    content: '/';
    margin-left: 10px;
    color: #ccc;
}

.zurich-date-breadcrumb li:last-child:after {
    content: '';
}

.zurich-date-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.zurich-date-breadcrumb a:hover {
    color: var(--primary-color);
}

.zurich-date-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.zurich-date-container {
    max-width: 850px;
    margin: 0 auto;
}

.zurich-date-content-block {
    margin-bottom: 60px;
}

.zurich-date-content-block h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
}

.zurich-date-content-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

.zurich-date-content-block h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 15px;
    margin-top: 35px;
    font-weight: 500;
}

.zurich-date-list-item {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.zurich-date-list-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.zurich-date-image-full {
    margin: 50px 0;
    text-align: center;
}

.zurich-date-image-full img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: auto;
}

.zurich-date-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.zurich-date-grid-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.zurich-date-grid-item img:hover {
    transform: translateY(-5px);
}

.zurich-date-grid-item .img-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.zurich-date-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.zurich-date-table th, .zurich-date-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.zurich-date-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.zurich-date-table tr:last-child td {
    border-bottom: none;
}

.zurich-date-check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.zurich-date-check-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.zurich-date-check-list li:before {
    content: '★';
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.zurich-date-cta {
    text-align: center;
    background-color: var(--primary-color);
    padding: 50px;
    border-radius: 8px;
    margin-top: 60px;
    color: var(--white);
}

.zurich-date-cta p {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: var(--white);
}

.zurich-date-cta .btn {
    background-color: var(--gold);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.zurich-date-cta .btn:hover {
    background-color: #d4af37;
}

/* Zurich Date Responsive Styles */
@media (max-width: 992px) {
    .zurich-date-grid-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zurich-date-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .zurich-date-container {
        padding: 0 20px;
    }
    
    .zurich-date-hero {
        padding: 100px 0;
    }
    
    .zurich-date-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .zurich-date-table {
        display: block;
        overflow-x: auto;
    }
    
    .zurich-date-content-block h2 {
        font-size: 1.8rem;
    }
}

/* First Sugar Date Page Styles */
.erste-date-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddiescom37-633x573.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 130px 0;
    text-align: center;
}

.erste-date-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.erste-date-hero-content p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

.erste-date-breadcrumb {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #eaeaea;
}

.erste-date-breadcrumb li {
    margin-right: 12px;
}

.erste-date-breadcrumb li:after {
    content: '»';
    margin-left: 12px;
    color: #ccc;
}

.erste-date-breadcrumb li:last-child:after {
    content: '';
}

.erste-date-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.erste-date-breadcrumb a:hover {
    color: var(--primary-color);
}

.erste-date-section {
    padding: 50px 0 90px;
    background-color: #fcfcfc;
}

.erste-date-container {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.erste-date-content-block {
    margin-bottom: 50px;
}

.erste-date-content-block h2 {
    color: var(--primary-color);
    font-size: 2.1rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.erste-date-content-block p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.erste-date-content-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.erste-date-image-full {
    margin: 45px 0;
    text-align: center;
}

.erste-date-image-full img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: auto;
    max-height: 550px;
    object-fit: cover;
}

.erste-date-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 45px 0;
}

.erste-date-grid-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.erste-date-grid-item img:hover {
    transform: scale(1.02);
}

.erste-date-grid-item .img-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

.erste-date-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.erste-date-table th, .erste-date-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.erste-date-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.erste-date-table tr:nth-child(even) {
    background-color: #fbfbfb;
}

.erste-date-check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.erste-date-check-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px dashed #eee;
    position: relative;
}

.erste-date-check-list li:before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.erste-date-list {
    list-style: none;
    padding: 0;
}

.erste-date-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.erste-date-list li:before {
    content: '!';
    color: #e74c3c;
    position: absolute;
    left: 5px;
    font-weight: bold;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}

.erste-date-safety-box {
    background-color: #fdf2f2;
    border-left: 5px solid #e74c3c;
    padding: 25px;
    margin: 40px 0;
    border-radius: 0 6px 6px 0;
}

.erste-date-safety-box h3 {
    color: #c0392b;
    margin-top: 0;
}

.erste-date-cta {
    text-align: center;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 45px;
    border-radius: 8px;
    margin-top: 50px;
    border: 1px solid #dee2e6;
}

.erste-date-cta p {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #333;
}

.erste-date-cta .btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.erste-date-cta .btn:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Erste Date Responsive Styles */
@media (max-width: 992px) {
    .erste-date-grid-images {
        grid-template-columns: 1fr;
    }
    
    .erste-date-hero-content h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .erste-date-container {
        padding: 25px;
    }
    
    .erste-date-hero {
        padding: 90px 0;
    }
    
    .erste-date-hero-content h1 {
        font-size: 2rem;
    }
    
    .erste-date-table {
        display: block;
        overflow-x: auto;
    }
    
    .erste-date-content-block h2 {
        font-size: 1.7rem;
    }
}
