:root {
    --primary-color: #d4af37; /* Gold */
    --primary-hover: #b4932a;
    --secondary-color: #1a1a1a; /* Dark Black/Gray */
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-join {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
}

.btn-join:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('images/sugardaddy111-1600x550.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 60px; /* Add padding to prevent header overlap */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}

.hero-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.hero-btn.outline {
    background-color: transparent;
    border: 2px solid var(--white);
}

.hero-btn.outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Section General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* Intro Section */
.intro {
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text p {
    margin-bottom: 15px;
    color: #555;
}

.intro-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Community Section */
.community {
    background-color: var(--light-bg);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.community-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.community-card:hover {
    transform: translateY(-10px);
}

.community-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.community-content {
    padding: 25px;
    text-align: center;
}

.community-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

/* Features */
.features {
    background-color: var(--secondary-color);
    color: var(--white);
}

.features .section-title h2 {
    color: var(--primary-color);
}

.features .section-title p {
    color: #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 15px;
    color: #ddd;
}

/* Profiles */
.profiles {
    background-color: var(--white);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.profile-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover img {
    transform: scale(1.1);
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: var(--white);
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
}

.profile-location {
    font-size: 14px;
    opacity: 0.9;
}

/* Cities */
.cities {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.city-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: none;
    text-decoration: none;
    color: inherit;
    display: block;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.city-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-img-wrapper img {
    transform: scale(1.05);
}

.city-content {
    padding: 25px;
    text-align: center;
}

.city-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.city-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content-wrapper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.seo-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.seo-section:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.seo-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
}

.seo-section p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

.seo-section p:last-child {
    margin-bottom: 0;
}

/* Steps */
.steps {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Pricing */
.pricing {
    background-color: var(--light-bg);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 300px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pricing-price {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-period {
    font-size: 16px;
    color: #999;
}

.pricing-features li {
    margin-bottom: 10px;
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    min-width: 300px;
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Blog */
.blog {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* FAQ */
.faq {
    background-color: var(--light-bg);
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item ul, .faq-item ol {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}
.faq-item li {
    margin-bottom: 5px;
    color: #666;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-grid {
    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: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

/* Duplicate responsive styles removed */

/* Refactored Inline Styles */

/* Profiles */
.profile-category-title {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 26px;
    position: relative;
    padding-bottom: 10px;
}
.profile-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.profile-category-title.sugar-babies {
    margin: 80px 0 30px;
}

/* Steps */
.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* Pricing Refactored */
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-feature-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.pricing-feature-item:last-child {
    border-bottom: none;
}

.pricing-amount {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
}
.pricing-amount.gold {
    color: #b4932a;
}

.pricing-btn-full-width {
    margin-top: 20px;
    width: 100%;
}
.pricing-btn-gold {
    background-color: #b4932a;
    border-color: #b4932a;
}
.pricing-card .hero-btn.outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.pricing-card .hero-btn.outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.pricing-card.featured {
    border-color: #b4932a;
    transform: scale(1.05);
}

/* Testimonials */
.testimonials .section-title h2 {
    color: var(--white);
}
.testimonials .section-title p {
    color: #ddd;
}
.user-location {
    font-size: 12px;
    color: #ccc;
}

/* Blog */
.blog-read-more {
    color: var(--primary-color);
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    background: url('images/background2.jpg') center/cover;
    text-align: center;
    color: var(--white);
    padding: 100px 20px;
    position: relative;
}
.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.final-cta-content {
    position: relative;
    z-index: 1;
}
.final-cta-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}
.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
}

/* Privacy Page Styles */
.page-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.privacy-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.privacy-content-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.privacy-block {
    margin-bottom: 40px;
}

.privacy-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.privacy-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.privacy-img-wrapper {
    margin: 30px 0;
    text-align: center;
}

.privacy-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Privacy Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.privacy-table th, .privacy-table td {
    border: 1px solid #eee;
    padding: 15px;
    text-align: left;
}

.privacy-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.privacy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Privacy Lists */
.privacy-list, .privacy-list-check, .privacy-list-ordered {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-list li, .privacy-list-ordered li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-list-check {
    list-style: none;
    margin-left: 0;
}

.privacy-list-check li {
    padding-left: 30px;
    position: relative;
}

.privacy-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Highlight Section (Image + Text) */
.highlight-section .row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.highlight-section .col-text {
    flex: 1;
}

.highlight-section .col-img {
    flex: 1;
}

.highlight-section .col-img img {
    width: 100%;
    border-radius: 8px;
}

/* Rights Grid */
.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-rights-grid li {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

/* ... existing code ... */

.privacy-rights-grid li strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* SDM Blog Page Specific Styles */
.sdm-blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/background2.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.sdm-blog-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sdm-blog-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.sdm-blog-section {
    padding-bottom: 80px;
}

.sdm-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .sdm-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sdm-blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sdm-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.sdm-blog-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.sdm-blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sdm-blog-card:hover .sdm-blog-img-wrapper img {
    transform: scale(1.05);
}

.sdm-blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sdm-blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.4;
    font-weight: 700;
}

.sdm-blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.sdm-read-more {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: auto;
    display: inline-block;
}

.sdm-read-more:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* =========================================
   Appealing Profile Page Styles (Isolated)
   ========================================= */

/* Breadcrumbs */
.appealing-profile-breadcrumbs {
    background-color: #f8f9fa;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.appealing-profile-breadcrumbs a {
    color: var(--secondary-color);
    font-weight: 600;
}

.appealing-profile-breadcrumbs a:hover {
    color: var(--primary-color);
}

.appealing-profile-breadcrumbs span {
    color: #999;
}

/* Hero Section */
.appealing-profile-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardaddy111-1600x550.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.appealing-profile-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.appealing-profile-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Container */
.appealing-profile-container {
    padding-bottom: 80px;
}

/* Sections */
.appealing-profile-section {
    margin-bottom: 60px;
    padding: 0; /* Override generic section padding */
}

.appealing-profile-part {
    padding: 0; /* Override generic section padding */
}

.appealing-profile-section h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.appealing-profile-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.appealing-profile-section.bg-light {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

/* Content Grid (Text + Image) */
.appealing-profile-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.appealing-profile-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

.appealing-profile-image img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Lists */
.appealing-profile-list {
    list-style: none;
    padding-left: 0;
}

.appealing-profile-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.appealing-profile-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.appealing-profile-list.danger li::before {
    content: '×';
    color: #dc3545;
    font-size: 1.5rem;
    top: -2px;
}

.appealing-profile-check li {
    padding-left: 30px;
    margin-bottom: 10px;
}

.appealing-profile-check li strong {
    color: var(--secondary-color);
}

/* Grid 3 Columns */
.appealing-profile-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.appealing-profile-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.appealing-profile-card:hover {
    transform: translateY(-5px);
}

.appealing-profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Divider */
.appealing-profile-divider {
    height: 1px;
    background-color: #eee;
    margin: 30px 0; /* Reduced from 60px */
}

/* Parts A & B Headers */
.part-title {
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

/* Subsections */
.appealing-profile-subsection {
    margin-bottom: 50px;
}

.appealing-profile-subsection:last-child {
    margin-bottom: 0;
}

.appealing-profile-subsection h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

/* Tips & Info Boxes */
.appealing-profile-box {
    background-color: #f0f4f8;
    border-left: 5px solid #0056b3;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.appealing-profile-box h4 {
    color: #0056b3;
    margin-bottom: 10px;
}

.appealing-profile-tips {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.appealing-profile-tips h4 {
    color: #856404;
    margin-bottom: 10px;
}

/* Tags */
.appealing-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.appealing-profile-tags li {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Steps */
.appealing-profile-steps {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.appealing-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-num {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final CTA */
.appealing-cta-box {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
}

.appealing-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.appealing-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.appealing-btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .appealing-profile-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .appealing-profile-image {
        order: -1; /* Image on top on mobile */
    }

    .appealing-profile-image img {
        height: 300px;
    }

    .appealing-profile-grid-3,
    .appealing-profile-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .appealing-profile-hero h1 {
        font-size: 2rem;
    }
    
    .appealing-profile-hero {
        padding: 60px 0;
    }
}

.contact-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
}

/* Safety Page Styles */
.safety-section {
    padding: 60px 0;
    background-color: #fff;
}

.safety-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-color);
}

.safety-grid-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.safety-grid-row.reverse {
    flex-direction: row-reverse;
}

.safety-text-col {
    flex: 1;
}

.safety-img-col {
    flex: 1;
}

.safety-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px; /* Uniform height */
    object-fit: cover;
}

.safety-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.safety-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.safety-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.safety-list-bullet {
    list-style: none;
    margin-top: 15px;
}

.safety-list-bullet li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.safety-list-bullet li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.safety-table th, .safety-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.safety-table th {
    background-color: var(--secondary-color);
    color: var(--white);
}

.safety-table tr:hover {
    background-color: #f5f5f5;
}

.safety-alert-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.safety-alert-box h4 {
    color: #856404;
    margin-bottom: 10px;
}

.safety-alert-box p {
    color: #856404;
    margin: 0;
}

    margin: 0;
}

/* FAQ Page Styles */
.faq-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-color);
}

.faq-category-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
    text-align: center; /* Center title for text-only layout */
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%; /* Center the underline */
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.faq-grid-row {
    display: block;
    margin-bottom: 60px;
}

.faq-text-col {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-item h3 i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--primary-color);
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-table th {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.faq-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
}

.faq-table tr:last-child td {
    border-bottom: none;
}

.faq-table tr:hover td {
    background-color: #fafafa;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.faq-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/background2.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.about-hero p {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

.about-section {
    margin-bottom: 80px;
}

.about-grid-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-grid-row.reverse {
    flex-direction: row-reverse;
}

.about-text-col, .about-img-col {
    flex: 1;
}

.about-img-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-full-width {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 30px;
    display: inline-block;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: var(--primary-color);
}

.about-card p {
    padding: 0 20px 20px;
    color: #666;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-feature-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.about-feature-list li::before {
    content: "★";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.about-rules-list {
    list-style: none;
    padding: 0;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.about-rules-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.about-rules-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.about-card-small {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex: 1;
    text-align: center;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
}

.about-cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.about-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
}

.step-num {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-join-large {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.btn-join-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px; /* Reduced from 32px */
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 20px;
    }

    .btn-join {
        width: 80%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
    }
    
    .intro-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .intro-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .intro-img img {
        width: 100%;
        height: auto;
    }
    
    .section-title h2 {
        font-size: 28px;
    }

    /* Privacy Page Responsive */
    .highlight-section .row {
        flex-direction: column;
    }
    
    .privacy-content-wrapper {
        padding: 20px;
    }
    
    .privacy-rights-grid {
        grid-template-columns: 1fr;
    }

    /* Safety Page Responsive */
    .safety-grid-row, 
    .safety-grid-row.reverse {
        flex-direction: column;
    }
    
    .safety-grid-row.reverse .safety-img-col {
        margin-bottom: 20px;
    }
    
    .safety-card {
        margin-bottom: 20px;
    }

    /* About Page Responsive */
    .about-grid-row, 
    .about-grid-row.reverse {
        flex-direction: column;
    }
    
    .about-grid-row.reverse .about-img-col {
        margin-bottom: 20px;
        order: -1; /* Image on top for mobile */
    }
    
    .about-img-col img {
        height: 300px;
    }
    
    .about-hero {
        height: 300px; /* Reduced height for mobile */
        padding: 0 15px; /* Prevent text touching edges */
    }

    .about-hero h1 {
        font-size: 28px; /* Reduced from 32px */
        line-height: 1.2;
    }

    .about-hero p {
        font-size: 18px; /* Reduced from 24px */
    }
    
    .about-cards-grid,
    .about-grid-row .about-card-small {
        grid-template-columns: 1fr;
    }
}

/* Chat Rooms Styles */
.chat-room-hero {
    height: 60vh;
    min-height: 400px;
    background: url('images/sugar-daddy-1236x820.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.chat-room-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.chat-room-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.chat-room-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.chat-room-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.chat-room-intro {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.chat-room-section-title {
    margin-bottom: 50px;
    text-align: center;
}

.chat-room-section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.chat-room-section-title p {
    color: #666;
    font-size: 1.1rem;
}

.chat-room-content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.chat-room-content-block p {
    margin-bottom: 20px;
}

.chat-room-types {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.chat-room-type-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.chat-room-type-row.reverse {
    flex-direction: row-reverse;
}

.chat-room-type-row:last-child {
    margin-bottom: 0;
}

.chat-room-type-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chat-room-type-img img {
    width: 100%;
    height: 400px; /* Fixed height for uniformity */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chat-room-type-img:hover img {
    transform: scale(1.05);
}

.chat-room-type-content {
    flex: 1;
}

.chat-room-type-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.chat-room-type-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.chat-room-list {
    list-style: none;
    padding-left: 0;
}

.chat-room-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.chat-room-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.chat-room-topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.topic-item {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    color: #555;
}

.chat-room-benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: #666;
}

.chat-room-rules {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.chat-room-rules .chat-room-section-title h2 {
    color: var(--white);
}

.chat-room-rules .chat-room-section-title p {
    color: #ccc;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
}

.chat-room-rules-list {
    counter-reset: rule-counter;
    list-style: none;
    margin-top: 30px;
}

.chat-room-rules-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.chat-room-rules-list li::before {
    counter-increment: rule-counter;
    content: counter(rule-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.chat-room-faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-card p {
    color: #666;
}

.chat-room-cta {
    padding: 100px 0;
    background: url('images/sugardaddythessaloniki11-320x320.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: var(--white);
}

.chat-room-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.chat-room-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.chat-room-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.chat-room-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* Expectations Section */
.chat-room-expectations {
    padding: 80px 0;
    background-color: var(--white);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expectation-item {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expectation-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.expectation-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.expectation-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.expectation-item p {
    color: #666;
    line-height: 1.6;
}

/* How to Select Section */
.chat-room-howto {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.howto-steps {
    max-width: 900px;
    margin: 0 auto;
}

.howto-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* =========================================
   Athens Page Styles
   ========================================= */

.athens-hero {
    position: relative;
    height: 600px;
    background-image: url('images/sugardaddy111-1600x550.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.athens-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.athens-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.athens-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.athens-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.athens-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e91e63;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
}

.athens-btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.athens-btn.large {
    font-size: 1.5rem;
    padding: 20px 50px;
}

/* Sections */
.athens-section {
    padding: 80px 0;
}

.athens-bg-light {
    background-color: #f9f9f9;
}

.athens-bg-dark {
    background-color: #2c2c2c;
    color: #fff;
}

.athens-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.athens-title.text-white {
    color: #fff;
}

.athens-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Grids & Layouts */
.athens-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.athens-grid-2.reverse {
    flex-direction: row-reverse;
}

.athens-text {
    flex: 1;
}

.athens-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.athens-img {
    flex: 1;
}

.athens-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Reasons Grid */
.athens-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.athens-reason-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;
}

.athens-reason-card:hover {
    transform: translateY(-10px);
}

.athens-reason-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Profiles List */
.athens-profiles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.athens-profile-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.athens-profile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.athens-profile-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.athens-profile-icon svg {
    width: 100%;
    height: 100%;
    fill: #e91e63;
}

.athens-profile-desc h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

/* Lists */
.athens-list {
    list-style: none;
    padding: 0;
}

.athens-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.athens-list li::before {
    content: '✔';
    color: #e91e63;
    position: absolute;
    left: 0;
    top: 0;
}

/* Areas Grid */
.athens-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.athens-area-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.athens-area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.athens-area-content {
    padding: 20px;
}

.athens-area-content h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Comparison Table */
.athens-comparison-wrapper {
    overflow-x: auto;
}

.athens-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.athens-comparison-table th,
.athens-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.athens-comparison-table th {
    background-color: #333;
    color: #fff;
}

.athens-comparison-table tr:hover {
    background-color: #f5f5f5;
}

/* Tips Grid */
.athens-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.athens-tip-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #e91e63;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.athens-tip-box h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Check List */
.athens-check-list {
    list-style: none;
    padding: 0;
}

.athens-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.athens-check-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 2px;
}

/* Relationship Types */
.athens-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.athens-type-card {
    text-align: center;
}

.athens-type-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #e91e63;
}

.athens-type-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

/* Success Stories */
.athens-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.athens-story-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.athens-story-card::before {
    content: '"';
    font-size: 5rem;
    color: #e91e63;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.story-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.story-author {
    font-weight: 700;
    color: #333;
    text-align: right;
}

/* FAQ */
.athens-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.athens-faq-item {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.athens-faq-item h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA */
.athens-cta-section {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.athens-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.athens-cta-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .athens-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .athens-grid-2, 
    .athens-grid-2.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .athens-img {
        width: 100%;
    }

    .athens-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .athens-hero {
        height: 500px;
        margin-top: 60px;
    }
    
    .athens-title {
        font-size: 2rem;
    }

    .athens-cta-section h2 {
        font-size: 2rem;
    }
    
    .athens-cta-section p {
        font-size: 1.2rem;
    }
}

.howto-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3f3c33;
    opacity: 0.5;
    min-width: 60px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Thessaloniki Page Styles */
.thess-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('images/Thessaloniki.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Header space */
}

.thess-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.thess-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.thess-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.thess-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.thess-btn, .thess-btn-large {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
}

.thess-btn:hover, .thess-btn-large:hover {
    background: transparent;
    color: #fff;
}

.thess-btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.thess-section {
    padding: 80px 0;
}

.thess-section.text-center {
    text-align: center;
}

.bg-gray {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #222;
}

.text-white {
    color: #fff;
}

.thess-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.thess-title.text-white {
    color: #fff;
}

.thess-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thess-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.thess-text {
    flex: 1;
}

.thess-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.thess-img {
    flex: 1;
}

.thess-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thess-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.thess-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.thess-card:hover {
    transform: translateY(-10px);
}

.thess-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.thess-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.thess-type-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.thess-type-item:hover {
    border-color: #e91e63;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.1);
}

.thess-icon {
    width: 60px;
    height: 60px;
    fill: #e91e63;
    margin-bottom: 20px;
}

.thess-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.thess-place-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thess-place-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.thess-place-content {
    padding: 25px;
}

.thess-place-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.thess-table-responsive {
    overflow-x: auto;
}

.thess-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.thess-table th, .thess-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.thess-table th {
    background: #e91e63;
    color: #fff;
    font-weight: 600;
}

.thess-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.thess-benefit h3 {
    color: #e91e63;
    margin-bottom: 20px;
}

.thess-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.thess-list-item h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.thess-safety-box {
    background: #fff;
    padding: 40px;
    border-left: 5px solid #e91e63;
    border-radius: 5px;
}

.thess-safety-box ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
}

.thess-safety-box li {
    margin-bottom: 10px;
}

.thess-text-limit {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.thess-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.thess-timeline-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #e91e63;
}

.thess-timeline-item h3 {
    color: #e91e63;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .thess-grid-2 {
        flex-direction: column;
    }
    
    .thess-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .thess-hero h1 {
        font-size: 2.5rem;
    }
    
    .thess-section {
        padding: 50px 0;
    }
}

.step-content p {
    color: #555;
    font-size: 1.1rem;
}

/* Chat Room Responsive */
@media (max-width: 992px) {
    .chat-room-type-row {
        gap: 30px;
    }
    
    .chat-room-type-img img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .chat-room-hero {
        height: auto;
        min-height: 550px;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .chat-room-hero-content h1 {
        font-size: 2rem;
    }

    .chat-room-type-row,
    .chat-room-type-row.reverse {
        flex-direction: column;
    }
    
    .chat-room-type-img {
        width: 100%;
    }
    
    .chat-room-type-img img {
        height: 250px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-room-cta-content h2 {
        font-size: 2rem;
    }

    .howto-step {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

/* Terms Page Styles */
.terms-hero {
    position: relative;
    height: 400px;
    background-image: url('images/Athens.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.terms-hero-content {
    position: relative;
    z-index: 1;
}

.terms-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.terms-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.terms-article {
    background: var(--white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.terms-article h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.terms-article h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-color);
}

.terms-article p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.terms-image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.terms-image-wrapper img:hover {
    transform: scale(1.02);
}

.terms-table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.terms-table th,
.terms-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.terms-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.terms-table tr:hover {
    background-color: #f8f8f8;
}

.terms-list,
.terms-list-checked {
    margin: 20px 0;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #555;
}

.terms-list-checked {
    list-style: none;
    padding-left: 0;
}

.terms-list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.terms-list-checked li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-grid-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.terms-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.terms-card.warning {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.terms-card ul {
    list-style: none;
}

.terms-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: inherit;
}

.terms-contact-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.terms-contact-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.terms-contact-box .contact-text {
    flex: 1;
}

.terms-contact-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.terms-contact-box p {
    color: #ccc;
}

.terms-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.terms-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 2rem;
    }
    
    .terms-article {
        padding: 20px;
    }
    
    .terms-grid-cols {
        grid-template-columns: 1fr;
    }
    
    .terms-contact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-contact-box img {
        margin-bottom: 20px;
    }
}

/* Athens Page Styles */
.athens-hero {
    position: relative;
    height: 500px;
    background-image: url('images/Athens.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.athens-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.athens-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.athens-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.athens-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.athens-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.athens-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.athens-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-gold {
    background-color: #fcf8e3;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

/* Grid Systems */
.athens-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.athens-grid-2.reverse {
    flex-direction: row-reverse;
}

.athens-text {
    flex: 1;
}

.athens-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.athens-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.athens-img {
    flex: 1;
}

.athens-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.athens-img img:hover {
    transform: scale(1.02);
}

.athens-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.athens-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.athens-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.athens-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.athens-list {
    list-style: none;
    margin-top: 20px;
}

.athens-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.athens-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.athens-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background: var(--white);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.area-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--secondary-color);
    color: var(--white);
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.story-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card h4 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.story-card p {
    padding: 0 20px 20px;
    font-style: italic;
    color: #666;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-athens {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-item-athens h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* CTA */
.athens-cta {
    background: linear-gradient(135deg, var(--secondary-color), #000);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.athens-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.athens-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
}

.athens-btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.athens-btn-large:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .athens-hero {
        height: 400px;
    }
    
    .athens-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .athens-grid-2, 
    .athens-grid-2.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .athens-grid-4,
    .athens-grid-3,
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .athens-hero-content h1 {
        font-size: 2rem;
    }
    
    .athens-grid-4,
    .athens-grid-3,
    .stories-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .athens-section {
        padding: 50px 0;
    }
    
    .athens-cta {
        padding: 60px 0;
    }
    
    .athens-cta h2 {
        font-size: 2rem;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Patra Page Styles */
.patra-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('images/Patras.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.patra-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.patra-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.patra-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.patra-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.patra-btn, .patra-btn-large {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
}

.patra-btn:hover, .patra-btn-large:hover {
    background: transparent;
    color: #fff;
}

.patra-btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.patra-section {
    padding: 80px 0;
}

.patra-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.patra-title.text-white {
    color: #fff;
}

.patra-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.patra-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.patra-grid-2.reverse {
    flex-direction: row-reverse;
}

.patra-text {
    flex: 1;
}

.patra-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.patra-img {
    flex: 1;
}

.patra-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.patra-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.patra-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.patra-card:hover {
    transform: translateY(-5px);
}

.patra-card h3 {
    margin-bottom: 15px;
    color: #e91e63;
}

.patra-bg-light {
    background-color: #f9f9f9;
}

.patra-list {
    list-style: none;
    padding: 0;
}

.patra-list li {
    margin-bottom: 20px;
}

.patra-list li strong {
    color: #333;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.patra-list ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.patra-list ul li {
    margin-bottom: 10px;
    color: #555;
}

.patra-text-center {
    text-align: center;
}

.patra-text-limit {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .patra-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .patra-grid-2, .patra-grid-2.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .patra-img {
        order: -1;
    }
}

/* Herakleio Page Styles */
.herakleio-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('images/Heraklion.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.herakleio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.herakleio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.herakleio-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.herakleio-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.herakleio-btn, .herakleio-btn-large {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
}

.herakleio-btn:hover, .herakleio-btn-large:hover {
    background: transparent;
    color: #fff;
}

.herakleio-btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.herakleio-section {
    padding: 80px 0;
}

.herakleio-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.herakleio-title.text-white {
    color: #fff;
}

.herakleio-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.herakleio-grid-2.reverse {
    flex-direction: row-reverse;
}

.herakleio-text {
    flex: 1;
}

.herakleio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.herakleio-img {
    flex: 1;
}

.herakleio-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.herakleio-bg-light {
    background-color: #f9f9f9;
}

.herakleio-list {
    list-style: none;
    padding: 0;
}

.herakleio-list li {
    margin-bottom: 20px;
}

.herakleio-list li strong {
    color: #333;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.herakleio-list ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.herakleio-list ul li {
    margin-bottom: 10px;
    color: #555;
}

.herakleio-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.herakleio-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.herakleio-card:hover {
    transform: translateY(-5px);
}

.herakleio-card h3 {
    margin-bottom: 15px;
    color: #e91e63;
}

.herakleio-text-center {
    text-align: center;
}

.herakleio-text-limit {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .herakleio-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .herakleio-grid-2, .herakleio-grid-2.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .herakleio-img {
        order: -1;
    }
}


.patra-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.patra-card:hover {
    transform: translateY(-10px);
}

.patra-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.patra-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.patra-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
}

.stat-label {
    font-size: 1.2rem;
    color: #ccc;
}

.patra-desc-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.patra-comparison-table {
    overflow-x: auto;
}

.patra-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.patra-comparison-table th, .patra-comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.patra-comparison-table th {
    background: #e91e63;
    color: #fff;
}

.patra-tips-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.patra-tips-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid #e91e63;
}

.patra-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.patra-place {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.patra-place img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.patra-place-content {
    padding: 20px;
}

.patra-place-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.patra-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.patra-feat-item h4 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.patra-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.patra-step {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.step-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 15px;
    opacity: 0.3;
}

.patra-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.patra-story {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.patra-story img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
}

.story-content h4 {
    color: #e91e63;
    margin-bottom: 10px;
}

.patra-faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.patra-text-limit {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive Patra */
@media (max-width: 992px) {
    .patra-grid-2, .patra-grid-2.reverse {
        flex-direction: column;
    }
    
    .patra-stories {
        grid-template-columns: 1fr;
    }
    
    .patra-story {
        flex-direction: column;
        text-align: center;
    }
    
    .patra-story img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .patra-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.patra-text-center {
    text-align: center;
}

/* Herakleio Page Styles */
.herakleio-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('images/Heraklion.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.herakleio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.herakleio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.herakleio-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.herakleio-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.herakleio-btn, .herakleio-btn-large {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
}

.herakleio-btn:hover, .herakleio-btn-large:hover {
    background: transparent;
    color: #fff;
}

.herakleio-btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.herakleio-section {
    padding: 80px 0;
}

.herakleio-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.herakleio-title.text-white {
    color: #fff;
}

.herakleio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.herakleio-grid-2 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.herakleio-grid-2.reverse {
    flex-direction: row-reverse;
}

.herakleio-text {
    flex: 1;
}

.herakleio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.herakleio-img {
    flex: 1;
}

.herakleio-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.herakleio-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.herakleio-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.herakleio-card:hover {
    transform: translateY(-10px);
}

.herakleio-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.herakleio-list {
    list-style: none;
    padding: 0;
}

.herakleio-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
}

.herakleio-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.herakleio-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.herakleio-tip h4 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.herakleio-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.herakleio-step {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.step-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.herakleio-comparison-table {
    overflow-x: auto;
}

.herakleio-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.herakleio-comparison-table th, .herakleio-comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.herakleio-comparison-table th {
    background: #e91e63;
    color: #fff;
}

.herakleio-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.herakleio-place {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.herakleio-place img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.herakleio-place-content {
    padding: 20px;
}

.herakleio-content-block {
    max-width: 800px;
    margin: 0 auto;
}

.herakleio-content-block h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #333;
}

.herakleio-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.herakleio-profile-type {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.herakleio-profile-type img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #e91e63;
}

.herakleio-text-center {
    text-align: center;
}

.herakleio-text-limit {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive Herakleio */
@media (max-width: 992px) {
    .herakleio-grid-2, .herakleio-grid-2.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .herakleio-hero h1 {
        font-size: 2.5rem;
    }
}


/* Confirm Real Sugar Baby Page Styles - Simplified */
.confirm-real-breadcrumbs {
    background: #fff;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid #eee;
}
.confirm-real-breadcrumbs a {
    color: #555;
    text-decoration: none;
}
.confirm-real-breadcrumbs a:hover {
    color: #e91e63;
}

.confirm-real-hero {
    position: relative;
    padding: 80px 0;
    background: #333 url('images/background2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.confirm-real-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.confirm-real-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}
.confirm-real-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
.confirm-real-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.confirm-real-section {
    padding: 50px 0;
}
.confirm-real-bg-light {
    background-color: #fcfcfc;
}

.confirm-real-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.confirm-real-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.confirm-real-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
.confirm-real-content-wrapper.reverse {
    flex-direction: row-reverse;
}
.confirm-real-text {
    flex: 1;
}
.confirm-real-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
}
.confirm-real-image {
    flex: 1;
}
.confirm-real-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.confirm-real-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.confirm-real-card {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #eee;
}
.confirm-real-card h3 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.confirm-real-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.confirm-real-list {
    list-style: none;
    padding: 0;
}
.confirm-real-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.confirm-real-list li::before {
    content: "•";
    color: #e91e63;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.confirm-real-list strong {
    color: #333;
}

.confirm-real-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.confirm-real-step {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 4px;
}
.confirm-real-step h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}
.confirm-real-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.confirm-real-alert-box {
    background: #fff9fa;
    border-left: 4px solid #e91e63;
    padding: 25px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}
.confirm-real-alert-box h3 {
    color: #c2185b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.confirm-real-alert-box ol {
    margin: 0;
    padding-left: 20px;
}
.confirm-real-alert-box li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
}
.confirm-real-alert-box strong {
    color: #c2185b;
}

.confirm-real-comparison {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.confirm-real-col {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #eee;
    min-width: 280px;
}
.confirm-real-col h3 {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}
.confirm-real-check-list {
    list-style: none;
    padding: 0;
}
.confirm-real-check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #555;
}
.confirm-real-check-list li::before {
    content: "✓";
    color: #4caf50;
    position: absolute;
    left: 0;
}

.confirm-real-text-center {
    text-align: center;
}
.confirm-real-conclusion-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.confirm-real-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.confirm-real-btn:hover {
    background: #d81b60;
    color: #fff;
}

@media (max-width: 992px) {
    .confirm-real-content-wrapper, .confirm-real-content-wrapper.reverse {
        flex-direction: column;
    }
    .confirm-real-comparison {
        flex-direction: column;
    }
    .confirm-real-hero-content h1 {
        font-size: 2rem;
    }
}


/* Ask Allowance Page Styles - Isolated */
.ask-allowance-breadcrumbs {
    background: #fff;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid #eee;
}
.ask-allowance-breadcrumbs a {
    color: #555;
    text-decoration: none;
}
.ask-allowance-breadcrumbs a:hover {
    color: #e91e63;
}

.ask-allowance-hero {
    position: relative;
    padding: 100px 0;
    background: #333 url('images/personalize-your-approach.webp') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.ask-allowance-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.ask-allowance-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}
.ask-allowance-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.ask-allowance-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ask-allowance-section {
    padding: 60px 0;
}
.ask-allowance-bg-light {
    background-color: #f9f9f9;
}

.ask-allowance-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}
.ask-allowance-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.ask-allowance-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.ask-allowance-text {
    flex: 1;
}
.ask-allowance-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}
.ask-allowance-image {
    flex: 1;
}
.ask-allowance-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.ask-allowance-image-center {
    text-align: center;
    margin-top: 30px;
}
.ask-allowance-image-center img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ask-allowance-grid-2 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.ask-allowance-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    min-width: 300px;
}
.ask-allowance-card h3 {
    margin-bottom: 15px;
    color: #e91e63;
    font-size: 1.3rem;
}
.ask-allowance-card p {
    color: #555;
    line-height: 1.6;
}
.ask-allowance-text-block {
    flex: 1;
    min-width: 250px;
}
.ask-allowance-text-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}
.ask-allowance-text-block p {
    line-height: 1.6;
    color: #555;
}

.ask-allowance-list, .ask-allowance-list-red {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.ask-allowance-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #444;
}
.ask-allowance-list li::before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.ask-allowance-list-red li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #444;
}
.ask-allowance-list-red li::before {
    content: "✕";
    color: #d32f2f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ask-allowance-check-list {
    list-style: none;
    padding: 0;
}
.ask-allowance-check-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}
.ask-allowance-check-list li::before {
    content: "✓";
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ask-allowance-quotes {
    background: #fff3f8;
    padding: 20px 30px;
    border-left: 4px solid #e91e63;
    list-style: none;
    margin: 20px 0;
}
.ask-allowance-quotes li {
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
}

.ask-allowance-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}
.ask-allowance-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.ask-allowance-table th, .ask-allowance-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.ask-allowance-table th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 600;
}
.ask-allowance-table tr:hover {
    background-color: #f5f5f5;
}
.ask-allowance-table a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

.ask-allowance-warning-box {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    padding: 25px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}
.ask-allowance-warning-box p {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 15px;
}
.ask-allowance-warning-box ul {
    list-style: none;
    padding: 0;
}
.ask-allowance-warning-box li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}
.ask-allowance-warning-box li::before {
    content: "!";
    color: #d32f2f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ask-allowance-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.ask-allowance-step {
    flex: 1;
    text-align: center;
    min-width: 250px;
}
.ask-allowance-step h4 {
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.ask-allowance-text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.ask-allowance-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ask-allowance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: #fff;
}

@media (max-width: 992px) {
    .ask-allowance-content-wrapper {
        flex-direction: column;
    }
    .ask-allowance-hero-content h1 {
        font-size: 2rem;
    }
    .ask-allowance-grid-2 {
        flex-direction: column;
    }
}

/* Ask Allowance Prep Section */
.ask-allowance-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ask-allowance-prep-card {
    background: #222;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #333;
}

.ask-allowance-prep-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #e91e63;
    border-color: #e91e63;
}

.ask-allowance-prep-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.ask-allowance-prep-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Appealing Profile Page Styles */
.appealing-profile-breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    margin-top: 80px; /* Header height */
}

.appealing-profile-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.appealing-profile-breadcrumbs a:hover {
    color: #e91e63;
}

/* Duplicate hero styles removed */

.appealing-profile-page-container {
    padding-bottom: 60px;
}

.appealing-profile-section {
    padding: 60px 0;
}

.appealing-profile-bg-light {
    background-color: #f9f9f9;
}

.appealing-profile-title {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.appealing-profile-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e91e63;
}

.appealing-profile-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #666;
}

/* Grid Layouts */
.appealing-profile-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.appealing-profile-content-grid.reverse .appealing-profile-text {
    order: 2;
}

.appealing-profile-content-grid.reverse .appealing-profile-image {
    order: 1;
}

.appealing-profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.appealing-profile-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Grid */
.appealing-profile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.appealing-profile-feature-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;
}

.appealing-profile-feature-card:hover {
    transform: translateY(-5px);
}

.appealing-profile-feature-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Lists */
.appealing-profile-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.appealing-profile-list li {
    background: #fff;
    padding: 15px 20px;
    border-left: 4px solid #e91e63;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

/* Role Sections */
.appealing-profile-role-header {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    margin-bottom: 40px;
}

.appealing-profile-role-header.baby-header {
    background: #e91e63;
}

.appealing-profile-role-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.appealing-profile-examples {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    list-style: none;
    margin-bottom: 20px;
}

.appealing-profile-sample-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
    color: #333;
}

.appealing-profile-role-section h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Tips Grid */
.appealing-profile-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.appealing-profile-tip-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #2196f3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.appealing-profile-tip-box h3 {
    color: #2196f3;
    margin-bottom: 15px;
}

.appealing-profile-mistakes {
    background: #ffebee;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffcdd2;
}

.appealing-profile-mistakes h3 {
    color: #d32f2f;
    margin-bottom: 20px;
}

.appealing-profile-mistakes ul {
    padding-left: 20px;
}

.appealing-profile-mistakes li {
    margin-bottom: 10px;
    color: #c62828;
}

/* CTA */
.appealing-profile-cta {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.appealing-profile-cta h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.appealing-profile-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.appealing-profile-btn {
    display: inline-block;
    background: #fff;
    color: #e91e63;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.appealing-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
    color: #e91e63;
}

/* Responsive */
@media (max-width: 992px) {
    .appealing-profile-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .appealing-profile-content-grid.reverse .appealing-profile-text {
        order: 1;
    }
    
    .appealing-profile-content-grid.reverse .appealing-profile-image {
        order: 2;
    }

    .appealing-profile-image img {
        height: 300px;
    }
    
    .appealing-profile-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .appealing-profile-hero {
        height: 50vh;
    }
    
    .appealing-profile-hero-content h1 {
        font-size: 2rem;
    }
    
    .appealing-profile-title {
        font-size: 1.8rem;
    }
    
    .appealing-profile-section {
        padding: 40px 0;
    }
    
    .appealing-profile-role-header h2 {
        font-size: 1.4rem;
    }
}


