/* Reset & Base Styles */
:root {
    --primary-color: #d4af37; /* Gold for luxury/Sugar Mummy vibe */
    --secondary-color: #2c3e50; /* Dark Blue/Grey */
    --accent-color: #e74c3c; /* Red/Pink for CTA */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #ddd;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

/* =========================================
   US Page Specific Styles
   ========================================= */

.us-page .hero-us {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/LosAngeles.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* Fix for fixed header */
}

.us-page .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.us-page .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.us-page .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.us-page .section-padding {
    padding: 80px 20px;
}

.us-page .alt-bg {
    background-color: #f9f9f9;
}

/* Content Split */
.us-page .content-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.us-page .content-split.reverse {
    flex-direction: row-reverse;
}

.us-page .content-text {
    flex: 1;
}

.us-page .content-image {
    flex: 1;
}

.us-page .content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Table */
.us-page .table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.us-page .data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.us-page .data-table th,
.us-page .data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.us-page .data-table th {
    background-color: #e91e63;
    color: white;
    font-weight: 600;
}

.us-page .data-table tr:last-child td {
    border-bottom: none;
}

.us-page .data-table tr:hover {
    background-color: #fce4ec;
}

.us-page .table-note {
    text-align: right;
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}

/* Features Grid */
.us-page .features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.us-page .feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.us-page .feature-box:hover {
    transform: translateY(-5px);
}

.us-page .feature-box .icon-wrapper {
    color: #e91e63;
    margin-bottom: 20px;
}

.us-page .feature-box h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Checklist */
.us-page .check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.us-page .check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
}

.us-page .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Guide Steps */
.us-page .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.us-page .step-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #e91e63;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.us-page .step-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fce4ec;
    margin-bottom: 10px;
}

.us-page .step-item h4 {
    color: #333;
    margin-bottom: 15px;
}

/* Success Stories */
.us-page .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.us-page .story-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.us-page .story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.us-page .story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.us-page .story-header h5 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.us-page .location {
    font-size: 0.85rem;
    color: #777;
}

.us-page .story-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* FAQ */
.us-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.us-page details {
    background: white;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.us-page summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    list-style: none;
}

.us-page summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #e91e63;
}

.us-page details[open] summary::after {
    content: '-';
}

.us-page details p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f9f9f9;
}

/* Responsive */
@media (max-width: 900px) {
    .us-page .content-split,
    .us-page .content-split.reverse {
        flex-direction: column;
    }
    
    .us-page .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .us-page .hero-us {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .us-page .section-padding {
        padding: 50px 20px;
    }
}
/* =========================================
   App Page Styles
   ========================================= */
.app-page .hero-app {
    position: relative;
    background: url('images/background8.jpg') center/cover no-repeat;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.app-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.app-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 20px;
}

.app-page .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.app-page .hero-content p {
    font-size: 1.15rem;
    margin-bottom: 26px;
}

.app-page .btn-app {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.app-page .btn-app:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
}

.app-page .section-app {
    padding: 80px 20px;
}

.app-page .section-title-center {
    text-align: center;
    margin-bottom: 45px;
}

.app-page .two-col-app {
    display: flex;
    gap: 48px;
    align-items: center;
}

.app-page .content-app {
    flex: 1;
}

.app-page .content-app h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #333;
}

.app-page .content-app p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

.app-page .list-app {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.app-page .list-app li {
    margin: 8px 0;
}

.app-page .image-app {
    flex: 1;
}

.app-page .image-app img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.app-page .features-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.app-page .feature-card-app {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-page .feature-card-app:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.app-page .icon-wrap {
    width: 58px;
    height: 58px;
    background: #ffeef4;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.app-page .icon-wrap svg {
    width: 28px;
    height: 28px;
}

.app-page .feature-card-app h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.app-page .feature-card-app p {
    color: #666;
    line-height: 1.65;
}

.app-page .bg-light-app {
    background: #f9f9f9;
}

.app-page .steps-app {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.app-page .step-card-app {
    background: #fff;
    padding: 26px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

.app-page .step-card-app h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.app-page .table-responsive-app {
    overflow-x: auto;
}

.app-page .app-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    margin-top: 12px;
}

.app-page .app-table th,
.app-page .app-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.app-page .app-table th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.05rem;
}

.app-page .premium-head-app {
    background: #e91e63;
    color: #fff;
}

.app-page .check-app {
    color: #27ae60;
    font-weight: 700;
}

.app-page .cross-app {
    color: #e74c3c;
    font-weight: 700;
}

.app-page .full-width-text-app {
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
    line-height: 1.8;
}

.app-page .cta-app {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.app-page .btn-app-large {
    display: inline-block;
    padding: 18px 56px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.app-page .btn-app-large:hover {
    transform: scale(1.04);
    background: #d81b60;
}

@media (max-width: 900px) {
    .app-page .two-col-app {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .app-page .hero-app {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        align-items: flex-start;
    }
    .app-page .hero-content h1 {
        font-size: 2rem;
    }
    .app-page .hero-content p {
        font-size: 1rem;
    }
    .app-page .app-table th, 
    .app-page .app-table td {
        min-width: 120px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 10px 15px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 5px;
    padding: 10px 20px !important;
}

.btn-nav:hover {
    background-color: #b5952f;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 800px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 8px;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 60vh; /* Set max height to 60% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Scrollbar Styling for Dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.region-column h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.region-column a {
    display: block;
    padding: 8px 20px;
    font-size: 15px; /* Slightly larger for readability */
    font-weight: normal;
    color: #555;
    border-bottom: 1px solid #f9f9f9;
}

.region-column a:hover {
    padding-left: 8px;
    background: #f9f9f9;
    color: var(--primary-color);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: block; /* Use block layout for more predictable padding behavior on mobile */
    height: auto;
    min-height: 100vh;
    min-height: 100dvh; /* Prevent address bar resize jump */
    padding-top: 160px; /* Increased padding to ensure title clears the header */
    padding-bottom: 50px;
    width: 100%;
    overflow-x: hidden;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* General Button Styles */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: #b5952f;
    border-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Global Destinations Grid */
.countries-grid-dense {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.country-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.country-item:hover {
    transform: translateY(-5px);
}

.country-img-wrapper {
    height: 150px;
    overflow: hidden;
}

.country-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.country-item:hover .country-img-wrapper img {
    transform: scale(1.1);
}

.country-info {
    padding: 15px;
}

.country-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Latest Blogs Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* General Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

details {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    background: var(--white);
    font-weight: 600;
    list-style: none;
    color: var(--secondary-color);
    transition: background 0.2s;
}

summary:hover {
    background: #fdfdfd;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+'; 
    float: right;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    color: #555;
    background: #fafafa;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bbb;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Content Split Section */
.content-split {
    display: block; /* Changed from flex to block to allow text wrapping */
    margin-bottom: 40px;
}

.content-split::after { /* Clearfix */
    content: "";
    display: table;
    clear: both;
}

.content-image {
    width: 45%;
    margin-bottom: 20px;
}

.content-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-text {
    /* No width needed for text wrapping */
}

/* Alternate image float directions */
/* For Sugar Mummy section (Image Right) */
.content-split:nth-of-type(odd) .content-image {
    float: right;
    margin-left: 40px;
}

/* For Sugar Boy section (Image Left) */
.content-split:nth-of-type(even) .content-image {
    float: left;
    margin-right: 40px;
}

.lead-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 20px;
    color: #666;
}

/* Footer More Countries Accordion */
.footer-col .more-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.footer-col .more-toggle::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.9rem;
    color: #bbb;
    transition: transform 0.2s ease;
}
.footer-col .more-countries-item.active .more-toggle::after {
    transform: rotate(180deg);
}
.footer-col .more-countries {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 8px;
    border-top: 1px solid #333;
    padding-left: 10px;
}
.footer-col .more-countries li {
    padding: 6px 20px;
}
.footer-col .more-countries-item.active .more-countries {
    max-height: 340px; /* Expandable container height */
    overflow-y: auto;
}

/* Ultimate Guide Section */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guide-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.guide-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.guide-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.guide-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.guide-card strong {
    color: var(--secondary-color);
}

/* Media Queries */
@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 600px;
    }
    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .members-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Global Section Padding Reduction */
    section {
        padding: 40px 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Grid Adjustments for Mobile */
    .features-grid, 
    .countries-grid-dense,
    .guide-grid {
        grid-template-columns: 1fr; /* Force single column on mobile to prevent overflow */
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: calc(100vh - 80px); /* Ensure menu is scrollable if too long */
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        padding: 10px 20px;
        transform: none;
        display: none; /* Controlled by JS/CSS toggle */
        max-height: none; /* Let it expand fully in the menu flow */
        overflow-y: visible; 
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding-top: 130px; /* Adjusted based on user preference */
        align-items: flex-start; /* Prevent title cutoff */
    }

    .hero h1 {
        font-size: 2rem; /* Reduced from 2.5rem */
        padding: 0 10px;
        margin-top: 0; /* Ensure no negative margins */
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
        margin: 0 auto; /* Center content horizontally */
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px; /* Add some padding on sides */
    }

    .content-split {
        display: flex;
        flex-direction: column;
    }
    
    .content-image {
        float: none !important; /* Disable float on mobile */
        width: 100%;
        margin: 0 0 30px 0 !important;
    }
}

@media (max-width: 600px) {
    .members-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.5rem; /* Further reduced for small screens */
    }

    .hero p {
        font-size: 1.1rem; /* Better readability on small screens */
    }

    .btn, .cta-button {
        width: 100%; /* Full width buttons on small screens */
        padding: 12px 20px;
    }
}

/* Role Images in Features Section */
.role-img {
    width: 100%;
    height: 250px; /* Uniform height as requested */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Featured Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-img {
    height: 250px; /* Fixed height for uniformity */
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.member-card:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-details {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Sugar Mummy Page Specific Styles */
.sugar-mummy-page .profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.sugar-mummy-page .profile-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.sugar-mummy-page .profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.sugar-mummy-page .profile-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.sugar-mummy-page .profile-info {
    padding: 20px;
}
.sugar-mummy-page .profile-name {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sugar-mummy-page .profile-loc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sugar-mummy-page .profile-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}
.sugar-mummy-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.sugar-mummy-page .comparison-table th, 
.sugar-mummy-page .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.sugar-mummy-page .comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.sugar-mummy-page .comparison-table tr:last-child td {
    border-bottom: none;
}
.sugar-mummy-page .comparison-table tr:hover {
    background-color: #f9f9f9;
}
.sugar-mummy-page .feature-icon-svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.sugar-mummy-page .long-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}
.sugar-mummy-page .long-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.sugar-mummy-page .long-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}
.sugar-mummy-page .long-content li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #555;
}

/* Sugar Boy Page Specific Styles */
.sugar-boy-page {
    /* Base style for the page */
}

.sugar-boy-page .hero-sb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/malesugarbaby9.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* Offset for fixed header */
}

.sugar-boy-page .hero-content-sb {
    max-width: 800px;
    padding: 20px;
}

.sugar-boy-page .hero-content-sb h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sugar-boy-page .hero-content-sb p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.sugar-boy-page .btn-sb {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.sugar-boy-page .btn-sb:hover {
    background-color: var(--secondary-color);
}

.sugar-boy-page .content-section {
    padding: 60px 20px;
}

.sugar-boy-page .bg-light {
    background-color: #f9f9f9;
}

.sugar-boy-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sugar-boy-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.sugar-boy-page .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.sugar-boy-page .sb-content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sugar-boy-page .sb-text {
    flex: 1;
    min-width: 300px;
}

.sugar-boy-page .sb-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sugar-boy-page .sb-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

.sugar-boy-page .sb-image {
    flex: 1;
    min-width: 300px;
}

.sugar-boy-page .sb-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sugar-boy-page .benefits-grid-sb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sugar-boy-page .benefit-card-sb {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.sugar-boy-page .benefit-card-sb:hover {
    transform: translateY(-5px);
}

.sugar-boy-page .icon-sb {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.sugar-boy-page .benefit-card-sb h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.sugar-boy-page .profiles-grid-sb {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.sugar-boy-page .profile-card-sb {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sugar-boy-page .profile-card-sb:hover {
    transform: translateY(-5px);
}

.sugar-boy-page .profile-img-sb {
    height: 300px;
    overflow: hidden;
}

.sugar-boy-page .profile-img-sb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sugar-boy-page .profile-card-sb:hover .profile-img-sb img {
    transform: scale(1.05);
}

.sugar-boy-page .profile-info-sb {
    padding: 20px;
}

.sugar-boy-page .profile-header-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sugar-boy-page .profile-header-sb .name {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.sugar-boy-page .profile-header-sb .location {
    font-size: 0.9rem;
    color: #777;
}

.sugar-boy-page .profile-info-sb .bio {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sugar-boy-page .features-svg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sugar-boy-page .feature-svg-card {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.sugar-boy-page .sb-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sugar-boy-page .guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.sugar-boy-page .guide-step {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sugar-boy-page .guide-step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.sugar-boy-page .comparison-table-sb {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sugar-boy-page .comparison-table-sb th,
.sugar-boy-page .comparison-table-sb td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sugar-boy-page .comparison-table-sb th {
    background-color: var(--secondary-color);
    color: white;
}

.sugar-boy-page .comparison-table-sb tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sugar-boy-page .faq-sb details {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    background: white;
    cursor: pointer;
}

.sugar-boy-page .faq-sb summary {
    font-weight: bold;
    color: var(--secondary-color);
    outline: none;
}

.sugar-boy-page .faq-sb .faq-content {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sugar-boy-page .hero-content-sb h1 {
        font-size: 2rem;
    }
    
    .sugar-boy-page .sb-content-block {
        flex-direction: column;
    }
    
    .sugar-boy-page .sb-image {
        order: -1;
    }
}

/* Lesbian Page Specific Styles */
.lesbian-page {
    /* Base styles */
}

.lesbian-page .hero-les {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('images/chilewomen4.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.lesbian-page .hero-content-les {
    max-width: 900px;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

.lesbian-page .hero-content-les h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.lesbian-page .hero-content-les p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.lesbian-page .btn-les {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.lesbian-page .btn-les:hover {
    background-color: #b39025;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.lesbian-page .content-section {
    padding: 80px 20px;
}

.lesbian-page .bg-soft {
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.lesbian-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.lesbian-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.lesbian-page .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.lesbian-page .section-header p {
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.lesbian-page .les-content-block {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.lesbian-page .les-text {
    flex: 1;
    min-width: 300px;
}

.lesbian-page .les-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.lesbian-page .les-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.lesbian-page .les-image {
    flex: 1;
    min-width: 300px;
}

.lesbian-page .les-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lesbian-page .benefits-grid-les {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.lesbian-page .benefit-card-les {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.lesbian-page .benefit-card-les:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.lesbian-page .icon-les {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.lesbian-page .benefit-card-les h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.lesbian-page .benefit-card-les p {
    color: #666;
    line-height: 1.6;
}

.lesbian-page .profiles-grid-les {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.lesbian-page .profile-card-les {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.lesbian-page .profile-card-les:hover {
    transform: translateY(-8px);
}

.lesbian-page .profile-img-les {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.lesbian-page .profile-img-les img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.lesbian-page .profile-card-les:hover .profile-img-les img {
    transform: scale(1.1);
}

.lesbian-page .profile-info-les {
    padding: 25px;
}

.lesbian-page .profile-header-les {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.lesbian-page .profile-header-les .name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.lesbian-page .profile-header-les .location {
    font-size: 0.9rem;
    color: #888;
}

.lesbian-page .profile-info-les .bio {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lesbian-page .features-svg-grid-les {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.lesbian-page .feature-svg-card-les {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.lesbian-page .les-icon-svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    stroke-width: 1.5;
}

.lesbian-page .feature-svg-card-les h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.lesbian-page .feature-svg-card-les p {
    color: #666;
    font-size: 0.95rem;
}

.lesbian-page .guide-content-les {
    max-width: 800px;
    margin: 0 auto;
}

.lesbian-page .guide-step-les {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.lesbian-page .guide-step-les h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.lesbian-page .guide-step-les p {
    color: #555;
    line-height: 1.7;
}

.lesbian-page .comparison-table-les {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.lesbian-page .comparison-table-les th,
.lesbian-page .comparison-table-les td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.lesbian-page .comparison-table-les th {
    background-color: var(--secondary-color);
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lesbian-page .comparison-table-les tr:last-child td {
    border-bottom: none;
}

.lesbian-page .comparison-table-les tr:nth-child(even) {
    background-color: #fcfcfc;
}

.lesbian-page .faq-les details {
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.lesbian-page .faq-les summary {
    padding: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s;
    list-style: none; /* Hide default triangle */
}

.lesbian-page .faq-les summary::-webkit-details-marker {
    display: none;
}

.lesbian-page .faq-les summary::after {
    content: '+';
    float: right;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.lesbian-page .faq-les details[open] summary::after {
    content: '-';
}

.lesbian-page .faq-les details[open] summary {
    background-color: #f9f9f9;
}

.lesbian-page .faq-les .faq-content {
    padding: 20px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .lesbian-page .hero-content-les h1 {
        font-size: 2.2rem;
    }
    
    .lesbian-page .les-content-block {
        flex-direction: column;
    }
    
    .lesbian-page .les-image {
        order: -1;
    }
}

/* Additional Lesbian Page Styles */
.lesbian-page .section-les {
    padding: 60px 20px;
}

.lesbian-page .section-title-les {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.lesbian-page .center-btn-les {
    text-align: center;
    margin-top: 40px;
}

.lesbian-page .btn-les-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.lesbian-page .btn-les-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.lesbian-page .features-section-les {
    background-color: #f9f9f9;
    padding: 80px 20px;
    margin-top: 60px;
}

.lesbian-page .features-grid-les {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lesbian-page .feature-item-les {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.lesbian-page .feature-item-les:hover {
    transform: translateY(-5px);
}

.lesbian-page .icon-box-les {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lesbian-page .content-article-les {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.lesbian-page .article-title-les {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.lesbian-page .tips-list-les {
    list-style: none;
    margin: 30px 0;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 10px;
}

.lesbian-page .tips-list-les li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.lesbian-page .tips-list-les li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.lesbian-page .cta-section-les {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.lesbian-page .cta-section-les h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lesbian-page .cta-section-les p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.lesbian-page .large-btn {
    padding: 18px 50px;
    font-size: 1.3rem;
}

/* =========================================
   About Page Styles
   ========================================= */

.about-page .hero-about {
    position: relative;
    background: url('images/country2.jpg') center/cover no-repeat;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.about-page .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-page .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-page .btn-about {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-page .btn-about:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
}

.about-page .section-about {
    padding: 80px 20px;
}

.about-page .two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-page .about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-page .about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.about-page .about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-page .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-page .features-section-about {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.about-page .section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.about-page .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.about-page .features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page .feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.about-page .feature-box:hover {
    transform: translateY(-5px);
}

.about-page .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #ffeef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-page .icon-wrapper svg {
    width: 35px;
    height: 35px;
    color: #e91e63;
}

.about-page .feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.about-page .feature-box p {
    color: #666;
    line-height: 1.6;
}

.about-page .check-list {
    list-style: none;
    padding: 0;
}

.about-page .check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.about-page .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.about-page .comparison-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-page .comparison-table th, 
.about-page .comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.about-page .comparison-table th {
    background-color: #f8f8f8;
    color: #333;
    font-weight: 700;
}

.about-page .comparison-table .highlight {
    background-color: #fff0f6;
    color: #e91e63;
    font-weight: bold;
}

.about-page .safety-box {
    background: #f0f4f8;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-page .safety-box h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-page .faq-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.about-page .faq-item h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-page .cta-section-about {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.about-page .cta-section-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-page .cta-section-about p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.about-page .btn-about-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.about-page .btn-about-large:hover {
    transform: scale(1.05);
    background-color: #d81b60;
}

@media (max-width: 768px) {
    .about-page .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-page .two-col-grid {
        grid-template-columns: 1fr;
    }
    
    .about-page .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .about-page .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    .about-page .comparison-table th, 
    .about-page .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

/* =========================================
   Pricing Page Styles
   ========================================= */

.pricing-page .hero-pricing {
    position: relative;
    background: url('images/country13.jpg') center/cover no-repeat;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.pricing-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.pricing-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.pricing-page .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-page .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.pricing-page .btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-page .btn-pricing:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
}

.pricing-page .section-pricing {
    padding: 80px 20px;
}

.pricing-page .section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-page .section-title-center h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.pricing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-page .pricing-column {
    background: #fff;
}

.pricing-page .plan-header {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.pricing-page .plan-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: white;
}

.pricing-page .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-page .plan-card.popular {
    border: 2px solid #e91e63;
    background: #fff0f6;
}

.pricing-page .best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-page .plan-duration {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-page .plan-price {
    font-size: 2.5rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-page .plan-price span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.pricing-page .plan-total {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-page .btn-plan, .pricing-page .btn-plan-pop {
    display: block;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.pricing-page .btn-plan {
    background: #f1f1f1;
    color: #333;
}

.pricing-page .btn-plan:hover {
    background: #e0e0e0;
}

.pricing-page .btn-plan-pop {
    background: #e91e63;
    color: white;
}

.pricing-page .btn-plan-pop:hover {
    background: #d81b60;
}

.pricing-page .content-section-pricing {
    padding: 80px 20px;
}

.pricing-page .bg-light {
    background-color: #f9f9f9;
}

.pricing-page .text-block {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.pricing-page .features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.pricing-page .feature-detail {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-page .icon-wrap {
    width: 60px;
    height: 60px;
    background: #ffeef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-page .icon-wrap svg {
    width: 30px;
    height: 30px;
    color: #e91e63;
}

.pricing-page .feature-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.pricing-page .feature-detail p {
    color: #666;
    line-height: 1.6;
}

.pricing-page .two-col-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pricing-page .content-text {
    flex: 1;
}

.pricing-page .content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.pricing-page .content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pricing-page .content-image {
    flex: 1;
}

.pricing-page .content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-page .btn-pricing-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #e91e63;
    color: #e91e63;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.pricing-page .btn-pricing-outline:hover {
    background: #e91e63;
    color: white;
}

.pricing-page .pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.pricing-page .pricing-table th, 
.pricing-page .pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-page .pricing-table th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.1rem;
}

.pricing-page .pricing-table .premium-head {
    background: #e91e63;
    color: white;
}

.pricing-page .check {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-page .cross {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-page .full-width-text {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-page .full-width-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pricing-page .full-width-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pricing-page .faq-pricing {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.pricing-page .faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.pricing-page .faq-item h4 {
    font-size: 1.2rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.pricing-page .faq-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-page .cta-section-pricing {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.pricing-page .cta-section-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-page .cta-section-pricing p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.pricing-page .btn-pricing-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.pricing-page .btn-pricing-large:hover {
    transform: scale(1.05);
    background-color: #d81b60;
}

@media (max-width: 768px) {
    .pricing-page .hero-pricing {
        height: auto;
        min-height: auto;
        padding: 60px 20px; /* Add padding top and bottom */
        align-items: flex-start; /* Align to top to avoid centering issues if content is long */
    }

    .pricing-page .hero-content {
        padding-top: 20px; /* Extra space from top */
    }

    .pricing-page .hero-content h1 {
        font-size: 2rem; /* Reduce font size */
        margin-bottom: 15px;
    }

    .pricing-page .hero-content p {
        font-size: 1rem;
    }

    .pricing-page .two-col-content {
        flex-direction: column;
    }
    
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-page .table-responsive-pricing {
        overflow-x: auto;
    }
    
    .pricing-page .pricing-table th, 
    .pricing-page .pricing-table td {
        min-width: 120px;
    }
}

.guidelines-page .hero-guidelines {
    position: relative;
    background: url('images/country13.jpg') center/cover no-repeat;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.guidelines-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.guidelines-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 20px;
}

.guidelines-page .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.guidelines-page .hero-content p {
    font-size: 1.15rem;
    margin-bottom: 26px;
}

.guidelines-page .btn-guidelines {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.guidelines-page .btn-guidelines:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
}

.guidelines-page .section-guidelines {
    padding: 80px 20px;
}

.guidelines-page .section-title-center {
    text-align: center;
    margin-bottom: 45px;
}

.guidelines-page .two-col-guidelines {
    display: flex;
    gap: 48px;
    align-items: center;
}

.guidelines-page .content-guidelines {
    flex: 1;
}

.guidelines-page .content-guidelines h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #333;
}

.guidelines-page .content-guidelines p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

.guidelines-page .list-guidelines {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.guidelines-page .list-guidelines li {
    margin: 8px 0;
}

.guidelines-page .image-guidelines {
    flex: 1;
}

.guidelines-page .image-guidelines img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.guidelines-page .features-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.guidelines-page .feature-card-guidelines {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guidelines-page .feature-card-guidelines:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.guidelines-page .icon-wrap {
    width: 58px;
    height: 58px;
    background: #ffeef4;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.guidelines-page .icon-wrap svg {
    width: 28px;
    height: 28px;
}

.guidelines-page .feature-card-guidelines h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.guidelines-page .feature-card-guidelines p {
    color: #666;
    line-height: 1.65;
}

.guidelines-page .bg-light-guidelines {
    background: #f9f9f9;
}

.guidelines-page .text-guidelines {
    max-width: 900px;
    margin: 0 auto 18px;
    color: #555;
    line-height: 1.85;
}

.guidelines-page .table-responsive-guidelines {
    overflow-x: auto;
}

.guidelines-page .table-guidelines {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    margin-top: 12px;
}

.guidelines-page .table-guidelines th,
.guidelines-page .table-guidelines td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.guidelines-page .table-guidelines th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.05rem;
}

.guidelines-page .check-guidelines {
    color: #27ae60;
    font-weight: 700;
}

.guidelines-page .cross-guidelines {
    color: #e74c3c;
    font-weight: 700;
}

.guidelines-page .full-width-text-guidelines {
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
    line-height: 1.8;
}

.guidelines-page .cta-guidelines {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.guidelines-page .btn-guidelines-large {
    display: inline-block;
    padding: 18px 56px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.guidelines-page .btn-guidelines-large:hover {
    transform: scale(1.04);
    background: #d81b60;
}

@media (max-width: 900px) {
    .guidelines-page .two-col-guidelines {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .guidelines-page .hero-guidelines {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        align-items: flex-start;
    }
    .guidelines-page .hero-content h1 {
        font-size: 2rem;
    }
    .guidelines-page .hero-content p {
        font-size: 1rem;
    }
    .guidelines-page .table-guidelines th, 
    .guidelines-page .table-guidelines td {
        min-width: 120px;
    }
}

/* =========================================
   Terms Page Simplified Overrides
   ========================================= */
.terms-page .hero-terms {
    height: auto;
    min-height: auto;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/background8.jpg') center/cover no-repeat;
}
.terms-page .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
}
.terms-page .hero-content p {
    font-size: 1.02rem;
}
.terms-page .section-terms {
    padding: 60px 20px;
}
.terms-page .features-terms-grid {
    gap: 24px;
}
.terms-page .feature-card-terms {
    border: 1px solid #eee;
    box-shadow: none;
    border-radius: 8px;
    padding: 22px;
    transition: none;
}
.terms-page .feature-card-terms:hover {
    transform: none;
    box-shadow: none;
}
.terms-page .icon-wrap {
    width: 44px;
    height: 44px;
    background: none;
    color: #e91e63;
}
.terms-page .image-terms img {
    box-shadow: none;
}
.terms-page .table-terms {
    border: 1px solid #eee;
}
.terms-page .table-terms th, 
.terms-page .table-terms td {
    border-bottom: 1px solid #eee;
}
.terms-page .btn-terms, 
.terms-page .btn-terms-large {
    box-shadow: none;
}

@media (max-width: 768px) {
    .terms-page .hero-content h1 {
        font-size: 1.8rem;
    }
    .terms-page .hero-content p {
        font-size: 0.98rem;
    }
}

/* =========================================
   Rich Blog Page Styles
   ========================================= */
.rich-blog-page .hero-rich {
    position: relative;
    background: url('images/country13.jpg') center/cover no-repeat;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}
.rich-blog-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.rich-blog-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}
.rich-blog-page .hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    font-weight: 800;
}
.rich-blog-page .hero-content p {
    font-size: 1.1rem;
}
.rich-blog-page .btn-rich {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}
.rich-blog-page .btn-rich:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
}
.rich-blog-page .section-rich {
    padding: 80px 20px;
}
.rich-blog-page .section-title-center {
    text-align: center;
    margin-bottom: 40px;
}
.rich-blog-page .two-col-rich {
    display: flex;
    gap: 48px;
    align-items: center;
}
.rich-blog-page .content-rich {
    flex: 1;
}
.rich-blog-page .content-rich h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #333;
}
.rich-blog-page .content-rich p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}
.rich-blog-page .list-rich {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}
.rich-blog-page .list-rich li {
    margin: 8px 0;
}
.rich-blog-page .image-rich {
    flex: 1;
}
.rich-blog-page .image-rich img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.rich-blog-page .features-rich-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.rich-blog-page .feature-card-rich {
    background: #fff;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: none;
}
.rich-blog-page .icon-wrap {
    width: 46px;
    height: 46px;
    background: none;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.rich-blog-page .table-responsive-rich {
    overflow-x: auto;
}
.rich-blog-page .table-rich {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: none;
    border: 1px solid #eee;
}
.rich-blog-page .table-rich th,
.rich-blog-page .table-rich td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.rich-blog-page .table-rich th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.05rem;
}
.rich-blog-page .image-rich img {
    box-shadow: none;
}
.rich-blog-page .section-rich {
    padding: 60px 20px;
}
.rich-blog-page .content-rich p {
    margin-bottom: 14px;
}
.rich-blog-page .cta-rich {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}
.rich-blog-page .btn-rich-large {
    display: inline-block;
    padding: 18px 56px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .rich-blog-page .two-col-rich {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .rich-blog-page .hero-rich {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        align-items: flex-start;
    }
    .rich-blog-page .hero-content h1 {
        font-size: 2rem;
    }
    .rich-blog-page .hero-content p {
        font-size: 1rem;
    }
    .rich-blog-page .table-rich th, 
    .rich-blog-page .table-rich td {
        min-width: 120px;
    }
}
.terms-page .hero-terms {
    position: relative;
    background: url('images/background8.jpg') center/cover no-repeat;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.terms-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.terms-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 20px;
}

.terms-page .hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.terms-page .hero-content p {
    font-size: 1.12rem;
    margin-bottom: 26px;
}

.terms-page .btn-terms {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.terms-page .btn-terms:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
}

.terms-page .section-terms {
    padding: 80px 20px;
}

.terms-page .section-title-center {
    text-align: center;
    margin-bottom: 45px;
}

.terms-page .two-col-terms {
    display: flex;
    gap: 48px;
    align-items: center;
}

.terms-page .content-terms {
    flex: 1;
}

.terms-page .content-terms h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #333;
}

.terms-page .content-terms p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

.terms-page .list-terms {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.terms-page .list-terms li {
    margin: 8px 0;
}

.terms-page .image-terms {
    flex: 1;
}

.terms-page .image-terms img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-page .features-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.terms-page .feature-card-terms {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-page .feature-card-terms:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.terms-page .icon-wrap {
    width: 58px;
    height: 58px;
    background: #ffeef4;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.terms-page .icon-wrap svg {
    width: 28px;
    height: 28px;
}

.terms-page .bg-light-terms {
    background: #f9f9f9;
}

.terms-page .text-terms {
    max-width: 900px;
    margin: 0 auto 18px;
    color: #555;
    line-height: 1.85;
}

.terms-page .table-responsive-terms {
    overflow-x: auto;
}

.terms-page .table-terms {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    margin-top: 12px;
}

.terms-page .table-terms th,
.terms-page .table-terms td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.terms-page .table-terms th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.05rem;
}

.terms-page .check-terms {
    color: #27ae60;
    font-weight: 700;
}

.terms-page .cross-terms {
    color: #e74c3c;
    font-weight: 700;
}

.terms-page .full-width-text-terms {
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
    line-height: 1.8;
}

.terms-page .cta-terms {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.terms-page .btn-terms-large {
    display: inline-block;
    padding: 18px 56px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.terms-page .btn-terms-large:hover {
    transform: scale(1.04);
    background: #d81b60;
}

@media (max-width: 900px) {
    .terms-page .two-col-terms {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .terms-page .hero-terms {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        align-items: flex-start;
    }
    .terms-page .hero-content h1 {
        font-size: 2rem;
    }
    .terms-page .hero-content p {
        font-size: 1rem;
    }
    .terms-page .table-terms th, 
    .terms-page .table-terms td {
        min-width: 120px;
    }
}
.safety-page .hero-safety {
    position: relative;
    background: url('images/background8.jpg') center/cover no-repeat;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.safety-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.safety-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 20px;
}

.safety-page .hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.safety-page .hero-content p {
    font-size: 1.12rem;
    margin-bottom: 26px;
}

.safety-page .btn-safety {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.safety-page .btn-safety:hover {
    transform: translateY(-2px);
    background-color: #d81b60;
}

.safety-page .section-safety {
    padding: 80px 20px;
}

.safety-page .section-title-center {
    text-align: center;
    margin-bottom: 45px;
}

.safety-page .two-col-safety {
    display: flex;
    gap: 48px;
    align-items: center;
}

.safety-page .content-safety {
    flex: 1;
}

.safety-page .content-safety h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #333;
}

.safety-page .content-safety h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #333;
}

.safety-page .content-safety p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

.safety-page .list-safety {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.safety-page .list-safety li {
    margin: 8px 0;
}

.safety-page .image-safety {
    flex: 1;
}

.safety-page .image-safety img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.safety-page .features-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.safety-page .feature-card-safety {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-page .feature-card-safety:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.safety-page .icon-wrap {
    width: 58px;
    height: 58px;
    background: #ffeef4;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.safety-page .icon-wrap svg {
    width: 28px;
    height: 28px;
}

.safety-page .bg-light-safety {
    background: #f9f9f9;
}

.safety-page .table-responsive-safety {
    overflow-x: auto;
}

.safety-page .table-safety {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    margin-top: 12px;
}

.safety-page .table-safety th,
.safety-page .table-safety td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.safety-page .table-safety th {
    background: #f8f8f8;
    color: #333;
    font-size: 1.05rem;
}

.safety-page .check-safety {
    color: #27ae60;
    font-weight: 700;
}

.safety-page .cross-safety {
    color: #e74c3c;
    font-weight: 700;
}

.safety-page .full-width-text-safety {
    max-width: 900px;
    margin: 20px auto 0;
    color: #555;
    line-height: 1.8;
}

.safety-page .cta-safety {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.safety-page .btn-safety-large {
    display: inline-block;
    padding: 18px 56px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.safety-page .btn-safety-large:hover {
    transform: scale(1.04);
    background: #d81b60;
}

@media (max-width: 900px) {
    .safety-page .two-col-safety {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .safety-page .hero-safety {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
        align-items: flex-start;
    }
    .safety-page .hero-content h1 {
        font-size: 2rem;
    }
    .safety-page .hero-content p {
        font-size: 1rem;
    }
    .safety-page .table-safety th, 
    .safety-page .table-safety td {
        min-width: 120px;
    }
}
.uk-page .hero-uk {
    position: relative;
    background: url('images/London.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.uk-page .hero-content-uk {
    max-width: 840px;
    padding: 0 20px;
}

.uk-page .hero-content-uk h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.uk-page .hero-content-uk p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 26px;
}

.uk-page .hero-uk-btns .btn {
    margin-right: 12px;
}

.uk-page .section-padding {
    padding: 80px 20px;
}

.uk-page .alt-bg-uk {
    background-color: #f9f9f9;
}

.uk-page .content-split-uk {
    display: flex;
    align-items: center;
    gap: 40px;
}

.uk-page .content-split-uk.reverse {
    flex-direction: row-reverse;
}

.uk-page .content-image-uk {
    flex: 1;
}

.uk-page .content-image-uk img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.uk-page .content-text-uk {
    flex: 1;
}

.uk-page .check-list-uk {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.uk-page .check-list-uk li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.uk-page .check-list-uk li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 700;
}

.uk-page .table-responsive-uk {
    overflow-x: auto;
    margin-top: 24px;
}

.uk-page .data-table-uk {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.uk-page .data-table-uk th,
.uk-page .data-table-uk td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.uk-page .data-table-uk th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 700;
}

.uk-page .data-table-uk tr:last-child td {
    border-bottom: none;
}

.uk-page .data-table-uk tr:hover {
    background-color: #fce4ec;
}

.uk-page .table-note-uk {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.uk-page .features-uk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.uk-page .feature-uk-box {
    background: #fff;
    padding: 26px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.uk-page .feature-uk-box:hover {
    transform: translateY(-4px);
}

.uk-page .icon-wrapper-uk {
    color: #e91e63;
    margin-bottom: 16px;
}

.uk-page .steps-uk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.uk-page .step-uk-item {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    border-top: 4px solid #e91e63;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.uk-page .step-uk-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fce4ec;
    margin-bottom: 8px;
}

.uk-page .stories-uk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.uk-page .story-uk-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.uk-page .story-uk-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.uk-page .story-uk-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}

.uk-page .location-uk {
    font-size: 0.85rem;
    color: #777;
}

.uk-page .cta-uk-center {
    text-align: center;
    margin-top: 26px;
}

.uk-page .faq-uk-container {
    max-width: 800px;
    margin: 0 auto;
}

.uk-page .faq-uk-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.uk-page .faq-uk-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    list-style: none;
}

.uk-page .faq-uk-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    font-weight: 700;
    color: #e91e63;
}

.uk-page .faq-uk-container details[open] summary::after {
    content: '-';
}

.uk-page .faq-uk-container details p {
    padding: 0 18px 18px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #f4f4f4;
}

@media (max-width: 900px) {
    .uk-page .content-split-uk,
    .uk-page .content-split-uk.reverse {
        flex-direction: column;
    }
    .uk-page .hero-content-uk h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .uk-page .hero-uk {
        height: auto;
        padding: 100px 0 60px;
    }
    .uk-page .section-padding {
        padding: 56px 20px;
    }
}

.fr-page .hero-fr {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/france.jpg') center/cover no-repeat;
    min-height: 520px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.fr-page .hero-content-fr {
    max-width: 920px;
    padding: 0 20px;
}

.fr-page .hero-content-fr h1 {
    font-size: 2.9rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.15;
}

.fr-page .hero-content-fr p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.92);
}

.fr-page .hero-fr-btns .btn {
    margin: 0 10px 10px 0;
}

.fr-page .hero-fr-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.fr-page .section-padding {
    padding: 80px 20px;
}

.fr-page .alt-bg-fr {
    background-color: #f9f9f9;
}

.fr-page .content-split-fr {
    display: flex;
    align-items: center;
    gap: 44px;
}

.fr-page .content-split-fr.reverse {
    flex-direction: row-reverse;
}

.fr-page .content-image-fr {
    flex: 1;
}

.fr-page .content-image-fr img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.fr-page .content-text-fr {
    flex: 1;
    color: #555;
}

.fr-page .check-list-fr {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fr-page .check-list-fr li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.75;
}

.fr-page .check-list-fr li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.fr-page .types-fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.fr-page .type-fr-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #e91e63;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .type-fr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.fr-page .type-fr-card h3 {
    margin-bottom: 10px;
}

.fr-page .types-fr-note {
    max-width: 860px;
    margin: 18px auto 0;
    color: #666;
    text-align: center;
}

.fr-page .cities-fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.fr-page .city-fr-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .city-fr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.fr-page .city-fr-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.fr-page .city-fr-top h3 {
    margin: 0;
}

.fr-page .city-fr-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff0f5;
    color: #c2185b;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.fr-page .table-responsive-fr {
    overflow-x: auto;
    margin-top: 24px;
}

.fr-page .data-table-fr {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.fr-page .data-table-fr th,
.fr-page .data-table-fr td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    min-width: 150px;
}

.fr-page .data-table-fr td:nth-child(2),
.fr-page .data-table-fr td:nth-child(3),
.fr-page .data-table-fr td:nth-child(4) {
    white-space: nowrap;
}

.fr-page .data-table-fr th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 800;
}

.fr-page .data-table-fr tr:last-child td {
    border-bottom: none;
}

.fr-page .data-table-fr tr:hover {
    background-color: #fce4ec;
}

.fr-page .table-note-fr {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.fr-page .hotspots-fr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.fr-page .hotspot-fr-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .hotspot-fr-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.fr-page .hotspot-fr-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.fr-page .steps-fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 14px;
}

.fr-page .step-fr-item {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #e91e63;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .step-fr-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.fr-page .step-fr-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #fff0f5;
    color: #e91e63;
    font-weight: 900;
    margin-bottom: 12px;
}

.fr-page .features-fr-title {
    margin-bottom: 10px;
}

.fr-page .features-fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.fr-page .feature-fr-box {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .feature-fr-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.fr-page .icon-wrapper-fr {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.fr-page .challenges-fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 16px;
}

.fr-page .challenge-fr-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-page .challenge-fr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.fr-page .faq-fr-container {
    max-width: 840px;
    margin: 0 auto;
}

.fr-page .faq-fr-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.fr-page .faq-fr-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    position: relative;
}

.fr-page .faq-fr-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.fr-page .faq-fr-container details[open] summary::after {
    content: '-';
}

.fr-page .faq-fr-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.fr-page .cta-fr {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.fr-page .cta-fr p {
    color: #555;
    line-height: 1.75;
}

.fr-page .cta-fr-actions {
    margin-top: 18px;
}

.fr-page .cta-fr-actions .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.fr-page .cta-fr-actions .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.fr-page .cta-fr-actions .btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 900px) {
    .fr-page .content-split-fr,
    .fr-page .content-split-fr.reverse {
        flex-direction: column;
    }
    .fr-page .hero-content-fr h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .fr-page .hero-fr {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .fr-page .section-padding {
        padding: 56px 20px;
    }
    .fr-page .hero-content-fr p {
        font-size: 1rem;
    }
}

.de-page .hero-de {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('images/berlin.jpg') center/cover no-repeat;
    min-height: 560px;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.de-page .hero-content-de {
    max-width: 980px;
    padding: 0 20px;
}

.de-page .hero-content-de h1 {
    font-size: 2.85rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
}

.de-page .hero-content-de p {
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.92);
}

.de-page .hero-de-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.de-page .hero-de-btns .btn {
    margin-top: 6px;
}

.de-page .hero-de-badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.de-page .hero-de-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.de-page .section-padding {
    padding: 80px 20px;
}

.de-page .alt-bg-de {
    background-color: #f9f9f9;
}

.de-page .content-split-de {
    display: flex;
    align-items: center;
    gap: 44px;
}

.de-page .content-split-de.reverse {
    flex-direction: row-reverse;
}

.de-page .content-image-de {
    flex: 1;
}

.de-page .content-image-de img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.de-page .content-text-de {
    flex: 1;
    color: #555;
}

.de-page .check-list-de {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.de-page .check-list-de li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.75;
}

.de-page .check-list-de li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.de-page .de-statbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.de-page .de-stat {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.04);
}

.de-page .de-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.de-page .de-stat-label {
    color: #666;
    line-height: 1.5;
}

.de-page .cities-de-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.de-page .city-de-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.de-page .city-de-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.de-page .city-de-image {
    margin-bottom: 14px;
}

.de-page .city-de-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.de-page .city-de-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.de-page .city-de-top h3 {
    margin: 0;
}

.de-page .city-de-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff0f5;
    color: #c2185b;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.de-page .city-de-tip {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff7fb;
    border: 1px solid #f7d4e4;
    color: #555;
    line-height: 1.7;
}

.de-page .table-responsive-de {
    overflow-x: auto;
    margin-top: 24px;
}

.de-page .data-table-de {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.de-page .data-table-de th,
.de-page .data-table-de td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    min-width: 150px;
}

.de-page .data-table-de th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 900;
}

.de-page .data-table-de tr:last-child td {
    border-bottom: none;
}

.de-page .data-table-de tr:hover {
    background-color: #fce4ec;
}

.de-page .table-note-de {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.de-page .do-dont-de {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0;
}

.de-page .do-de,
.de-page .dont-de {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 18px rgba(0,0,0,0.04);
}

.de-page .do-de h3,
.de-page .dont-de h3 {
    margin-bottom: 10px;
}

.de-page .do-de ul,
.de-page .dont-de ul {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.75;
}

.de-page .hotspots-de-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.de-page .hotspot-de-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.de-page .hotspot-de-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.de-page .hotspot-de-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.de-page .plan-de {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px;
    margin: 16px 0;
    box-shadow: 0 5px 18px rgba(0,0,0,0.04);
}

.de-page .plan-de h3 {
    margin-bottom: 10px;
}

.de-page .plan-de-list {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.75;
}

.de-page .gift-de {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.75;
}

.de-page .features-de-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.de-page .feature-de-box {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.de-page .feature-de-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.de-page .icon-wrapper-de {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.de-page .cta-de-center {
    text-align: center;
    margin-top: 20px;
}

.de-page .proscons-de-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.de-page .proscons-de-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.de-page .proscons-de-card h3 {
    margin-bottom: 10px;
}

.de-page .proscons-de-card ul {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.75;
}

.de-page .proscons-de-card.pros {
    border-top: 4px solid #2e7d32;
}

.de-page .proscons-de-card.cons {
    border-top: 4px solid #c62828;
}

.de-page .de-keep-real {
    margin-top: 18px;
    background: #fff0f5;
    border: 1px solid #f7d4e4;
    border-radius: 14px;
    padding: 16px 18px;
    color: #555;
    line-height: 1.75;
}

.de-page .customs-de-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.de-page .custom-de-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 18px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.de-page .custom-de-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.de-page .faq-de-container {
    max-width: 900px;
    margin: 0 auto;
}

.de-page .faq-de-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.de-page .faq-de-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.de-page .faq-de-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.de-page .faq-de-container details[open] summary::after {
    content: '-';
}

.de-page .faq-de-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.de-page .cta-de {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.de-page .cta-de p {
    color: #555;
    line-height: 1.75;
}

.de-page .cta-de-actions {
    margin-top: 18px;
}

.de-page .cta-de-actions .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.de-page .cta-de-actions .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.de-page .cta-de-actions .btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 900px) {
    .de-page .content-split-de,
    .de-page .content-split-de.reverse {
        flex-direction: column;
    }
    .de-page .hero-content-de h1 {
        font-size: 2.2rem;
    }
    .de-page .do-dont-de {
        grid-template-columns: 1fr;
    }
    .de-page .proscons-de-grid {
        grid-template-columns: 1fr;
    }
    .de-page .cities-de-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .de-page .hero-de {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .de-page .section-padding {
        padding: 56px 20px;
    }
    .de-page .hero-content-de p {
        font-size: 1rem;
    }
    .de-page .cities-de-grid {
        grid-template-columns: 1fr;
    }
}

.pl-page .hero-pl {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/warsaw.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.pl-page .hero-content-pl {
    max-width: 900px;
    padding: 0 20px;
}

.pl-page .hero-content-pl h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pl-page .hero-content-pl p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pl-page .hero-pl-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.pl-page .hero-pl-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.pl-page .hero-pl-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.pl-page .section-padding {
    padding: 80px 20px;
}

.pl-page .alt-bg-pl {
    background-color: #f9f9f9;
}

.pl-page .content-split-pl {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pl-page .content-split-pl.reverse {
    flex-direction: row-reverse;
}

.pl-page .content-image-pl {
    flex: 1;
}

.pl-page .content-image-pl img {
    width: 100%;
}

.pl-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pl-page .content-text-pl {
    flex: 1;
}

.pl-page .content-text-pl p {
    color: #555;
    line-height: 1.75;
}

.pl-page .check-list-pl {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pl-page .check-list-pl li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.pl-page .check-list-pl li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.pl-page .pl-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.pl-page .pl-stat {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.pl-page .pl-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.pl-page .pl-stat-label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.pl-page .pl-market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.pl-page .pl-market-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pl-page .pl-market-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.pl-page .pl-market-card p {
    color: #666;
    line-height: 1.6;
}

.pl-page .cities-pl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.pl-page .city-pl-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.pl-page .city-pl-image {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.pl-page .city-pl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pl-page .city-pl-card:hover .city-pl-image img {
    transform: scale(1.06);
}

.pl-page .city-pl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.pl-page .city-pl-top h3 {
    margin: 0;
    color: var(--secondary-color);
}

.pl-page .city-pl-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    background: #fce4ec;
    color: #e91e63;
    white-space: nowrap;
}

.pl-page .city-pl-card p {
    color: #666;
    line-height: 1.65;
}

.pl-page .city-pl-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
}

.pl-page .table-responsive-pl {
    overflow-x: auto;
    margin-top: 24px;
}

.pl-page .data-table-pl {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.pl-page .data-table-pl th,
.pl-page .data-table-pl td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pl-page .data-table-pl th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 800;
}

.pl-page .data-table-pl tr:last-child td {
    border-bottom: none;
}

.pl-page .data-table-pl tr:hover {
    background-color: #fce4ec;
}

.pl-page .table-note-pl {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.pl-page .steps-pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.pl-page .step-pl-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border-top: 4px solid #e91e63;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pl-page .step-pl-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fce4ec;
    margin-bottom: 8px;
}

.pl-page .pl-safe-box {
    margin-top: 24px;
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.pl-page .features-pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.pl-page .feature-pl-box {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.pl-page .feature-pl-box:hover {
    transform: translateY(-4px);
}

.pl-page .icon-wrapper-pl {
    color: #e91e63;
    margin-bottom: 14px;
}

.pl-page .pl-feature-list {
    max-width: 900px;
    margin: 18px auto 0;
}

.pl-page .cta-pl-center {
    text-align: center;
    margin-top: 22px;
}

.pl-page .do-dont-pl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.pl-page .do-pl,
.pl-page .dont-pl {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.pl-page .do-pl h3,
.pl-page .dont-pl h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.pl-page .do-pl ul,
.pl-page .dont-pl ul {
    margin: 0;
    padding-left: 18px;
}

.pl-page .do-pl li,
.pl-page .dont-pl li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.pl-page .stories-pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.pl-page .story-pl-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.pl-page .story-pl-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.pl-page .story-pl-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}

.pl-page .story-pl-loc {
    font-size: 0.85rem;
    color: #777;
}

.pl-page .faq-pl-container {
    max-width: 900px;
    margin: 0 auto;
}

.pl-page .faq-pl-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pl-page .faq-pl-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.pl-page .faq-pl-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.pl-page .faq-pl-container details[open] summary::after {
    content: '-';
}

.pl-page .faq-pl-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.pl-page .cta-pl {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.pl-page .cta-pl p {
    color: #555;
    line-height: 1.75;
}

.pl-page .cta-pl-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pl-page .cta-pl-actions .btn {
    margin-top: 10px;
}

.pl-page .cta-pl-actions .btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pl-page .cta-pl-actions .btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 900px) {
    .pl-page .content-split-pl,
    .pl-page .content-split-pl.reverse {
        flex-direction: column;
    }
    .pl-page .hero-content-pl h1 {
        font-size: 2.2rem;
    }
    .pl-page .do-dont-pl {
        grid-template-columns: 1fr;
    }
    .pl-page .cities-pl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pl-page .pl-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .pl-page .hero-pl {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .pl-page .section-padding {
        padding: 56px 20px;
    }
    .pl-page .hero-content-pl p {
        font-size: 1rem;
    }
    .pl-page .cities-pl-grid {
        grid-template-columns: 1fr;
    }
    .pl-page .pl-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Canada Page Specific Styles
   ========================================= */

.ca-page .hero-ca {
    position: relative;
    background: url('images/Toronto.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.ca-page .hero-content-ca {
    max-width: 840px;
    padding: 0 20px;
}

.ca-page .hero-content-ca h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ca-page .hero-content-ca p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ca-page .hero-ca-btns .btn {
    margin-right: 12px;
}

.ca-page .section-padding {
    padding: 80px 20px;
}

.ca-page .alt-bg-ca {
    background-color: #f9f9f9;
}

.ca-page .content-split-ca {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ca-page .content-split-ca.reverse {
    flex-direction: row-reverse;
}

.ca-page .content-image-ca {
    flex: 1;
}

.ca-page .content-image-ca img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ca-page .content-text-ca {
    flex: 1;
}

.ca-page .check-list-ca {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ca-page .check-list-ca li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.ca-page .check-list-ca li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 700;
}

.ca-page .table-responsive-ca {
    overflow-x: auto;
    margin-top: 24px;
}

.ca-page .data-table-ca {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.ca-page .data-table-ca th,
.ca-page .data-table-ca td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ca-page .data-table-ca th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 700;
}

.ca-page .data-table-ca tr:last-child td {
    border-bottom: none;
}

.ca-page .data-table-ca tr:hover {
    background-color: #fce4ec;
}

.ca-page .features-grid-3-ca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.ca-page .feature-box-ca {
    background: #fff;
    padding: 26px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.ca-page .feature-box-ca:hover {
    transform: translateY(-4px);
}

.ca-page .icon-wrapper {
    color: #e91e63;
    margin-bottom: 16px;
}

.ca-page .stories-grid-ca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ca-page .story-card-ca {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ca-page .story-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.ca-page .story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}

.ca-page .location {
    font-size: 0.85rem;
    color: #777;
}

.ca-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ca-page details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ca-page summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    list-style: none;
}

.ca-page summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    font-weight: 700;
    color: #e91e63;
}

.ca-page details[open] summary::after {
    content: '-';
}

.ca-page details p {
    padding: 0 18px 18px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #f4f4f4;
}

@media (max-width: 900px) {
    .ca-page .content-split-ca,
    .ca-page .content-split-ca.reverse {
        flex-direction: column;
    }
    .ca-page .hero-content-ca h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .ca-page .hero-ca {
        height: auto;
        padding: 100px 0 60px;
    }
    .ca-page .section-padding {
        padding: 56px 20px;
    }
}


/* =========================================
   New Zealand Page Specific Styles
   ========================================= */

.nz-page .hero-nz {
    position: relative;
    background: url('images/Queenstown.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.nz-page .hero-content-nz {
    max-width: 840px;
    padding: 0 20px;
}

.nz-page .hero-content-nz h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nz-page .hero-content-nz p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nz-page .hero-nz-btns .btn {
    margin-right: 12px;
}

.nz-page .section-padding {
    padding: 80px 20px;
}

.nz-page .alt-bg-nz {
    background-color: #f9f9f9;
}

.nz-page .content-split-nz {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nz-page .content-split-nz.reverse {
    flex-direction: row-reverse;
}

.nz-page .content-image-nz {
    flex: 1;
}

.nz-page .content-image-nz img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nz-page .content-text-nz {
    flex: 1;
}

.nz-page .check-list-nz {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nz-page .check-list-nz li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.nz-page .check-list-nz li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 700;
}

.nz-page .table-responsive-nz {
    overflow-x: auto;
    margin-top: 24px;
}

.nz-page .data-table-nz {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.nz-page .data-table-nz th,
.nz-page .data-table-nz td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.nz-page .data-table-nz th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 700;
}

.nz-page .data-table-nz tr:last-child td {
    border-bottom: none;
}

.nz-page .data-table-nz tr:hover {
    background-color: #fce4ec;
}

.nz-page .features-grid-3-nz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.nz-page .feature-box-nz {
    background: #fff;
    padding: 26px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.nz-page .feature-box-nz:hover {
    transform: translateY(-4px);
}

.nz-page .icon-wrapper {
    color: #e91e63;
    margin-bottom: 16px;
}

.nz-page .stories-grid-nz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.nz-page .story-card-nz {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nz-page .guide-steps-nz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding-bottom: 20px;
}

.nz-page .step-item-nz {
    background: #ffffff;
    padding: 40px 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nz-page .step-item-nz:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #ffeef4;
}

.nz-page .step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #e91e63;
    color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nz-page .step-item-nz:hover .step-number {
    background: #e91e63;
    color: #fff;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.nz-page .step-item-nz h4 {
    margin-top: 15px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

.nz-page .step-item-nz p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.nz-page .cta-nz-center {
    text-align: center;
    margin-top: 26px;
}

@media (max-width: 900px) {
    .nz-page .content-split-nz,
    .nz-page .content-split-nz.reverse {
        flex-direction: column;
    }
    .nz-page .hero-content-nz h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .nz-page .hero-nz {
        height: auto;
        padding: 100px 0 60px;
    }
    .nz-page .section-padding {
        padding: 56px 20px;
    }
}

/* =========================================
   Australia Page Specific Styles
   ========================================= */

.au-page .hero-au {
    position: relative;
    background: url('images/Sydney,.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.au-page .hero-content-au {
    max-width: 840px;
    padding: 0 20px;
}

.au-page .hero-content-au h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.au-page .hero-content-au p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 26px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.au-page .hero-au-btns .btn {
    margin-right: 12px;
}

.au-page .section-padding {
    padding: 80px 20px;
}

.au-page .alt-bg-au {
    background-color: #f9f9f9;
}

.au-page .content-split-au {
    display: flex;
    align-items: center;
    gap: 40px;
}

.au-page .content-split-au.reverse {
    flex-direction: row-reverse;
}

.au-page .content-image-au {
    flex: 1;
}

.au-page .content-image-au img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.au-page .content-text-au {
    flex: 1;
}

.au-page .check-list-au {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.au-page .check-list-au li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.au-page .check-list-au li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 700;
}

.au-page .table-responsive-au {
    overflow-x: auto;
    margin-top: 24px;
}

.au-page .data-table-au {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.au-page .data-table-au th,
.au-page .data-table-au td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.au-page .data-table-au th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 700;
}

.au-page .data-table-au tr:last-child td {
    border-bottom: none;
}

.au-page .data-table-au tr:hover {
    background-color: #fce4ec;
}

.au-page .table-note-au {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.au-page .features-au-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.au-page .feature-au-box {
    background: #fff;
    padding: 26px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.au-page .feature-au-box:hover {
    transform: translateY(-4px);
}

.au-page .icon-wrapper-au {
    color: #e91e63;
    margin-bottom: 16px;
}

.au-page .stories-au-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.au-page .story-au-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.au-page .story-au-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.au-page .story-au-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}

.au-page .location-au {
    font-size: 0.85rem;
    color: #777;
}

.au-page .cta-au-center {
    text-align: center;
    margin-top: 26px;
}

.au-page .faq-au-container {
    max-width: 800px;
    margin: 0 auto;
}

.au-page .faq-au-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.au-page .faq-au-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    list-style: none;
}

.au-page .faq-au-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    font-weight: 700;
    color: #e91e63;
}

.au-page .faq-au-container details[open] summary::after {
    content: '-';
}

.au-page .faq-au-container details p {
    padding: 0 18px 18px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #f4f4f4;
}

@media (max-width: 900px) {
    .au-page .content-split-au,
    .au-page .content-split-au.reverse {
        flex-direction: column;
    }
    .au-page .hero-content-au h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .au-page .hero-au {
        height: auto;
        padding: 100px 0 60px;
    }
    .au-page .section-padding {
        padding: 56px 20px;
    }
}


/* =========================================
   UAE Page Styles (.ae-page)
   ========================================= */

.ae-page .hero-ae {
    position: relative;
    background: url('images/burjalarab-695x489.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset for fixed header */
}

.ae-page .hero-ae::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay for text readability */
}

.ae-page .hero-content-ae {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.ae-page .hero-content-ae h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #d4af37; /* Gold */
}

.ae-page .hero-content-ae p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ae-page .hero-ae-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ae-page .hero-ae-btns .btn {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ae-page .hero-ae-btns .btn:hover {
    background-color: #b39028;
    transform: translateY(-2px);
}

.ae-page .content-split-ae {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.ae-page .content-split-ae.reverse {
    flex-direction: row-reverse;
}

.ae-page .content-image-ae {
    flex: 1;
}

.ae-page .content-image-ae img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ae-page .content-text-ae {
    flex: 1;
}

.ae-page .content-text-ae p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.ae-page .alt-bg-ae {
    background-color: #f9f7f2; /* Light beige/cream */
}

.ae-page .features-ae-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ae-page .feature-ae-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid #d4af37;
}

.ae-page .feature-ae-box:hover {
    transform: translateY(-5px);
}

.ae-page .icon-wrapper-ae {
    color: #d4af37;
    margin-bottom: 20px;
}

.ae-page .city-image-ae {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ae-page .city-image-ae img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ae-page .feature-ae-box:hover .city-image-ae img {
    transform: scale(1.1);
}

.ae-page .feature-ae-box h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #222;
}

/* Guide Steps for Contact Info */
.ae-page .guide-steps-ae {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ae-page .step-item-ae {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ae-page .step-number {
    background: #d4af37;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ae-page .step-item-ae h3 {
    margin-bottom: 10px;
    color: #222;
}

/* Table Styles */
.ae-page .table-responsive-ae {
    overflow-x: auto;
    margin-top: 30px;
}

.ae-page .data-table-ae {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ae-page .data-table-ae th,
.ae-page .data-table-ae td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ae-page .data-table-ae th {
    background-color: #222;
    color: #d4af37;
    font-weight: 600;
}

.ae-page .data-table-ae tr:hover {
    background-color: #fcfcfc;
}

/* FAQ Grid */
.ae-page .faq-grid-ae {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.ae-page .faq-item-ae {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ae-page .faq-item-ae h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .ae-page .hero-content-ae h1 {
        font-size: 2.5rem;
    }
    .ae-page .content-split-ae {
        flex-direction: column !important;
        gap: 30px;
    }
    .ae-page .faq-grid-ae {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Nigeria Page Specific Styles
   ========================================= */

.ng-page .hero-ng {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/southafrica.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.ng-page .hero-content-ng {
    max-width: 800px;
    padding: 0 20px;
}

.ng-page .hero-content-ng h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ng-page .hero-content-ng p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ng-page .hero-ng-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ng-page .section-padding {
    padding: 80px 20px;
}

.ng-page .alt-bg-ng {
    background-color: #f0fdf4; /* Light green tint */
}

.ng-page .content-split-ng {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.ng-page .content-split-ng.reverse {
    flex-direction: row-reverse;
}

.ng-page .content-text-ng {
    flex: 1;
}

.ng-page .content-image-ng {
    flex: 1;
}

.ng-page .content-image-ng img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ng-page .table-responsive-ng {
    overflow-x: auto;
    margin-top: 30px;
}

.ng-page .data-table-ng {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.ng-page .data-table-ng th,
.ng-page .data-table-ng td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ng-page .data-table-ng th {
    background-color: #008751; /* Nigeria Green */
    color: white;
    font-weight: 600;
}

.ng-page .data-table-ng tr:hover {
    background-color: #e8f5e9;
}

.ng-page .table-note-ng {
    text-align: right;
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}

.ng-page .features-ng-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ng-page .feature-ng-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid #008751;
}

.ng-page .feature-ng-box:hover {
    transform: translateY(-5px);
}

.ng-page .icon-wrapper-ng {
    margin-bottom: 20px;
}

.ng-page .check-list-ng {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ng-page .check-list-ng li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ng-page .check-list-ng li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #008751;
    font-weight: bold;
}

.ng-page .steps-ng-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ng-page .step-ng-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #008751;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ng-page .step-ng-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #c8e6c9;
    margin-bottom: 10px;
}

.ng-page .faq-grid-ng {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ng-page .faq-item-ng {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.ng-page .faq-item-ng h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.ng-page .final-cta-ng {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/sugardating.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.ng-page .btn-large {
    display: inline-block;
    background-color: #008751;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 30px;
    transition: background 0.3s;
}

.ng-page .btn-large:hover {
    background-color: #00643c;
}

@media (max-width: 768px) {
    .ng-page .hero-ng {
        height: auto;
        padding: 100px 0 60px;
    }
    .ng-page .section-padding {
        padding: 56px 20px;
    }

    .ng-page .content-split-ng,
    .ng-page .content-split-ng.reverse {
        flex-direction: column;
    }
    
    .ng-page .hero-content-ng h1 {
        font-size: 2.2rem;
    }
}


/* =========================================
   South Africa (ZA) Page Styles
   ========================================= */

.za-page .hero-za {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/CapeTown.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.za-page .hero-content-za {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.za-page .hero-content-za h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.za-page .hero-content-za p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.za-page .hero-za-btns .btn {
    margin: 10px;
}

.za-page .content-split-za {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.za-page .content-split-za.reverse {
    direction: rtl;
}

.za-page .content-split-za.reverse .content-text-za {
    direction: ltr;
}

.za-page .content-image-za img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.za-page .content-image-za img:hover {
    transform: scale(1.02);
}

.za-page .content-text-za p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.za-page .alt-bg-za {
    background-color: #f9f9f9;
}

.za-page .cities-grid-za {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.za-page .city-card-za {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.za-page .city-card-za:hover {
    transform: translateY(-5px);
}

.za-page .city-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.za-page .city-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.za-page .city-card-za:hover .city-image-wrapper img {
    transform: scale(1.1);
}

.za-page .city-card-za h3 {
    padding: 20px 20px 10px;
    color: #333;
    font-size: 1.4rem;
}

.za-page .city-card-za p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.za-page .check-list-za {
    list-style: none;
    padding: 0;
}

.za-page .check-list-za li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
}

.za-page .check-list-za li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.2rem;
}

.za-page .features-za-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.za-page .feature-za-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.za-page .feature-za-box:hover {
    border-color: #e91e63;
    transform: translateY(-5px);
}

.za-page .icon-wrapper-za {
    width: 80px;
    height: 80px;
    background: #fff0f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #e91e63;
}

.za-page .feature-za-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.za-page .feature-za-box p {
    color: #666;
    line-height: 1.6;
}

.za-page .content-text-full-za {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.za-page .content-text-full-za p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.za-page .safety-box-za {
    background: #f0f8ff;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #2196f3;
}

.za-page .safety-box-za p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.za-page .faq-grid-za {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.za-page .faq-item-za {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.za-page .faq-item-za h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.za-page .faq-item-za p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.za-page .cta-section-za {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.za-page .cta-section-za h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.za-page .cta-section-za p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .za-page .hero-content-za h1 {
        font-size: 2.2rem;
    }
    
    .za-page .content-split-za {
        grid-template-columns: 1fr;
    }
    
    .za-page .content-split-za.reverse {
        direction: ltr;
    }
}


/* =========================================
   Morocco (MA) Page Styles
   ========================================= */

.ma-page .hero-ma {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/ma.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.ma-page .hero-content-ma {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.ma-page .hero-content-ma h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif; /* Adding a touch of elegance */
}

.ma-page .hero-content-ma p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ma-page .hero-ma-btns .btn {
    margin: 10px;
    border-radius: 5px; /* Slightly sharper edges for a modern look */
}

.ma-page .content-split-ma {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.ma-page .content-split-ma.reverse {
    direction: rtl;
}

.ma-page .content-split-ma.reverse .content-text-ma {
    direction: ltr;
}

.ma-page .content-image-ma img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* Deeper shadow */
    border: 5px solid #fff; /* White border frame */
}

.ma-page .content-text-ma p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.ma-page .alt-bg-ma {
    background-color: #fdf6f0; /* Warm sandy tone */
}

.ma-page .cities-grid-ma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.ma-page .city-card-ma {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ma-page .city-card-ma:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ma-page .city-image-wrapper {
    height: 180px;
    overflow: hidden;
}

.ma-page .city-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ma-page .city-card-ma:hover .city-image-wrapper img {
    transform: scale(1.1);
}

.ma-page .city-card-ma h3 {
    padding: 15px 15px 5px;
    color: #d35400; /* Terracotta color */
    font-size: 1.3rem;
}

.ma-page .city-card-ma p {
    padding: 0 15px 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ma-page .content-text-full-ma {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.ma-page .content-text-full-ma p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.ma-page .guide-grid-ma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ma-page .guide-card-ma {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #d35400;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ma-page .guide-card-ma h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ma-page .guide-card-ma p {
    color: #666;
    line-height: 1.6;
}

.ma-page .faq-grid-ma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ma-page .faq-item-ma {
    background: white;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.ma-page .faq-item-ma h4 {
    color: #d35400;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ma-page .cta-section-ma {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.ma-page .cta-section-ma h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .ma-page .hero-ma {
        height: auto;
        padding: 100px 0 60px;
    }
    .ma-page .section-padding {
        padding: 56px 20px;
    }

    .ma-page .hero-content-ma h1 {
        font-size: 2rem;
    }
    
    .ma-page .content-split-ma {
        grid-template-columns: 1fr;
    }
    
    .ma-page .content-split-ma.reverse {
        direction: ltr;
    }
}

/* =========================================
   Ghana Page Styles (.gh-page)
   ========================================= */

.gh-page .hero-gh {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/country17.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.gh-page .hero-content-gh {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.gh-page .hero-content-gh h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #f1c40f; /* Yellow/Gold for Ghana flag connection */
}

.gh-page .hero-content-gh p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.gh-page .hero-gh-btns .btn {
    margin: 0 10px;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: bold;
}

.gh-page .content-section-gh {
    padding: 80px 20px;
}

.gh-page .alt-bg-gh {
    background-color: #fcfcfc;
}

.gh-page .section-title-gh {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.gh-page .section-title-gh::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f1c40f;
}

.gh-page .content-block-gh p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.gh-page .split-layout-gh {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gh-page .split-layout-gh.reverse-gh {
    direction: rtl;
}

.gh-page .split-layout-gh.reverse-gh .text-col {
    direction: ltr;
}

.gh-page .rounded-img-gh {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 5px solid white;
}

.gh-page .feature-list-gh {
    list-style: none;
    padding: 0;
}

.gh-page .feature-list-gh li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.gh-page .feature-list-gh li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ce1126; /* Red for Ghana flag */
    font-size: 1.2rem;
}

.gh-page .cities-grid-gh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gh-page .city-card-gh {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gh-page .city-card-gh:hover {
    transform: translateY(-10px);
}

.gh-page .city-card-gh img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gh-page .city-card-gh h3 {
    padding: 20px 20px 10px;
    color: #006b3f; /* Green for Ghana flag */
}

.gh-page .city-card-gh p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.gh-page .tips-box-gh {
    background: white;
    padding: 25px;
    border-left: 4px solid #ce1126;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.gh-page .tips-box-gh h4 {
    color: #333;
    margin-bottom: 10px;
}

.gh-page .challenges-grid-gh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gh-page .challenge-item-gh {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gh-page .challenge-item-gh .icon-gh {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gh-page .stories-container-gh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gh-page .story-card-gh {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.gh-page .story-card-gh img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gh-page .story-content-gh {
    padding: 30px;
}

.gh-page .story-content-gh h3 {
    color: #ce1126;
    margin-bottom: 15px;
}

.gh-page .story-content-gh p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.gh-page .faq-list-gh {
    max-width: 800px;
    margin: 0 auto;
}

.gh-page .faq-item-gh {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.gh-page .faq-item-gh h4 {
    color: #006b3f;
    margin-bottom: 10px;
}

.gh-page .cta-section-gh {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/background8.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.gh-page .cta-section-gh h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gh-page .cta-section-gh p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gh-page .hero-content-gh h1 {
        font-size: 2rem;
    }
    
    .gh-page .split-layout-gh {
        grid-template-columns: 1fr;
    }
    
    .gh-page .split-layout-gh.reverse-gh {
        direction: ltr;
    }
}

/* =========================================
   SG Page Styles
   ========================================= */
.sg-page .hero-sg {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/country11.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.sg-page .hero-content-sg {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.sg-page .hero-content-sg h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sg-page .hero-content-sg p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sg-page .hero-sg-btns .btn {
    display: inline-block;
    padding: 15px 40px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.sg-page .hero-sg-btns .btn:hover {
    transform: translateY(-3px);
    background: #d81557;
}

.sg-page .content-split-sg {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.sg-page .content-split-sg.reverse {
    flex-direction: row-reverse;
}

.sg-page .content-image-sg {
    flex: 1;
}

.sg-page .content-image-sg img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sg-page .content-text-sg {
    flex: 1;
}

.sg-page .content-text-sg p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.sg-page .check-list-sg {
    list-style: none;
    padding: 0;
}

.sg-page .check-list-sg li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.sg-page .check-list-sg li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.sg-page .alt-bg-sg {
    background-color: #f9f9f9;
}

.sg-page .table-responsive-sg {
    overflow-x: auto;
    margin-bottom: 20px;
}

.sg-page .data-table-sg {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.sg-page .data-table-sg th,
.sg-page .data-table-sg td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sg-page .data-table-sg th {
    background: #333;
    color: white;
    font-weight: 600;
}

.sg-page .table-note-sg {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.sg-page .districts-grid-sg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sg-page .district-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.sg-page .district-box:hover {
    transform: translateY(-5px);
}

.sg-page .district-box h3 {
    color: #e91e63;
    margin-bottom: 15px;
}

.sg-page .faq-list-sg {
    max-width: 800px;
    margin: 0 auto;
}

.sg-page .faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.sg-page .faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sg-page .pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.sg-page .pros-box, .sg-page .cons-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sg-page .pros-box h3 { color: #2ecc71; margin-bottom: 20px; }
.sg-page .cons-box h3 { color: #e74c3c; margin-bottom: 20px; }

.sg-page .pros-box ul, .sg-page .cons-box ul {
    list-style: none;
    padding: 0;
}

.sg-page .pros-box ul li, .sg-page .cons-box ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.sg-page .pros-box ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.sg-page .cons-box ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.sg-page .features-sg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sg-page .feature-sg-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sg-page .feature-sg-box:hover {
    transform: translateY(-5px);
}

.sg-page .icon-wrapper-sg {
    width: 80px;
    height: 80px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sg-page .feature-sg-box h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .sg-page .content-split-sg,
    .sg-page .content-split-sg.reverse {
        flex-direction: column;
    }
    .sg-page .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sg-page .hero-sg {
        height: auto;
        padding: 100px 0 60px;
    }
    .sg-page .section-padding {
        padding: 56px 20px;
    }
    
    .sg-page .hero-content-sg h1 {
        font-size: 2rem;
    }
}

/* =========================================
   MX Page Styles
   ========================================= */
.mx-page .hero-mx {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/CiudaddeMéxico.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.mx-page .hero-content-mx {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.mx-page .hero-content-mx h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.mx-page .hero-content-mx p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mx-page .hero-mx-btns .btn {
    display: inline-block;
    padding: 15px 40px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.mx-page .hero-mx-btns .btn:hover {
    transform: translateY(-3px);
    background: #d81557;
}

.mx-page .content-split-mx {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.mx-page .content-split-mx.reverse {
    flex-direction: row-reverse;
}

.mx-page .content-image-mx {
    flex: 1;
}

.mx-page .content-image-mx img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mx-page .content-text-mx {
    flex: 1;
}

.mx-page .content-text-mx p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.mx-page .check-list-mx {
    list-style: none;
    padding: 0;
}

.mx-page .check-list-mx li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.mx-page .check-list-mx li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.mx-page .alt-bg-mx {
    background-color: #f9f9f9;
}

.mx-page .table-responsive-mx {
    overflow-x: auto;
    margin-bottom: 20px;
}

.mx-page .data-table-mx {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.mx-page .data-table-mx th,
.mx-page .data-table-mx td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mx-page .data-table-mx th {
    background: #333;
    color: white;
    font-weight: 600;
}

.mx-page .table-note-mx {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.mx-page .districts-grid-mx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mx-page .district-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.mx-page .district-box:hover {
    transform: translateY(-5px);
}

.mx-page .district-box h3 {
    color: #e91e63;
    margin-bottom: 15px;
}

.mx-page .faq-list-mx {
    max-width: 800px;
    margin: 0 auto;
}

.mx-page .faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mx-page .faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.mx-page .features-mx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mx-page .feature-mx-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mx-page .feature-mx-box:hover {
    transform: translateY(-5px);
}

.mx-page .icon-wrapper-mx {
    width: 80px;
    height: 80px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mx-page .feature-mx-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.mx-page .stories-grid-mx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mx-page .story-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
    text-align: center;
}

.mx-page .story-author {
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
    color: #e91e63;
}

/* Responsive */
@media (max-width: 900px) {
    .mx-page .content-split-mx,
    .mx-page .content-split-mx.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mx-page .hero-mx {
        height: auto;
        padding: 100px 0 60px;
    }
    .mx-page .section-padding {
        padding: 56px 20px;
    }
    
    .mx-page .hero-content-mx h1 {
        font-size: 2rem;
    }
}


/* =========================================
   Austria Page Specific Styles
   ========================================= */

.at-page .hero-at {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Wien.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.at-page .hero-content-at {
    max-width: 900px;
    padding: 0 20px;
}

.at-page .hero-content-at h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.at-page .hero-content-at p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.at-page .hero-at-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.at-page .hero-at-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.at-page .hero-at-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.at-page .section-padding {
    padding: 80px 20px;
}

.at-page .alt-bg-at {
    background-color: #f9f9f9;
}

.at-page .content-split-at {
    display: flex;
    align-items: center;
    gap: 40px;
}

.at-page .content-split-at.reverse {
    flex-direction: row-reverse;
}

.at-page .content-image-at {
    flex: 1;
}

.at-page .content-image-at img {
    width: 100%;
}

.at-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.at-page .content-text-at {
    flex: 1;
}

.at-page .content-text-at p {
    color: #555;
    line-height: 1.75;
}

.at-page .check-list-at {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.at-page .check-list-at li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.at-page .check-list-at li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.at-page .at-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.at-page .at-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.at-page .at-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.at-page .at-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.at-page .at-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.at-page .at-type-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.at-page .at-type-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.at-page .at-type-card p {
    color: #666;
    line-height: 1.6;
}

.at-page .cities-at-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.at-page .city-at-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.at-page .city-at-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.at-page .city-at-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.at-page .city-at-card:hover .city-at-img img {
    transform: scale(1.06);
}

.at-page .city-at-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.at-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.at-page .city-at-content p {
    color: #666;
    line-height: 1.65;
}

.at-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.at-page .table-responsive-at {
    overflow-x: auto;
    margin-top: 24px;
}

.at-page .data-table-at {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.at-page .data-table-at th,
.at-page .data-table-at td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.at-page .data-table-at th {
    background-color: #e91e63;
    color: #fff;
    font-weight: 800;
}

.at-page .data-table-at tr:last-child td {
    border-bottom: none;
}

.at-page .data-table-at tr:hover {
    background-color: #fce4ec;
}

.at-page .table-note-at {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.at-page .types-at-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.at-page .type-at-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.at-page .type-at-card h3 {
    color: #e91e63;
    margin-bottom: 10px;
}

.at-page .type-at-card p {
    color: #666;
    line-height: 1.6;
}

.at-page .preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.at-page .pref-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.at-page .pref-item h4 {
    margin-bottom: 8px;
    color: #333;
}

.at-page .dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.at-page .do-col, .at-page .dont-col {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.at-page .do-col h3 { color: #27ae60; margin-bottom: 15px; }
.at-page .dont-col h3 { color: #e74c3c; margin-bottom: 15px; }

.at-page .at-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.at-page .at-list-check li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.at-page .at-list-cross li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.at-page .at-list-cross li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.at-page .seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.at-page .season-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.at-page .season-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.at-page .time-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.at-page .time-table th, .at-page .time-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.at-page .time-table th {
    background: #fce4ec;
    color: #e91e63;
}

.at-page .challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.at-page .challenge-item {
    background: #fff8fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #fce4ec;
}

.at-page .faq-at-container {
    max-width: 900px;
    margin: 0 auto;
}

.at-page .faq-at-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.at-page .faq-at-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.at-page .faq-at-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.at-page .faq-at-container details[open] summary::after {
    content: '-';
}

.at-page .faq-at-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.at-page .cta-at-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.at-page .cta-at-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.at-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.at-page .feature-icon-item {
    text-align: center;
}
.at-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .at-page .content-split-at,
    .at-page .content-split-at.reverse {
        flex-direction: column;
    }
    .at-page .hero-content-at h1 {
        font-size: 2.2rem;
    }
    .at-page .cities-at-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .at-page .at-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .at-page .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .at-page .dos-donts-grid {
        grid-template-columns: 1fr;
    }
    .at-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .at-page .hero-at {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .at-page .section-padding {
        padding: 56px 20px;
    }
    .at-page .hero-content-at p {
        font-size: 1rem;
    }
    .at-page .cities-at-grid {
        grid-template-columns: 1fr;
    }
    .at-page .at-stats-grid {
        grid-template-columns: 1fr;
    }
    .at-page .seasons-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Romania Page Specific Styles
   ========================================= */

.ro-page .hero-ro {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bucharest.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.ro-page .hero-content-ro {
    max-width: 900px;
    padding: 0 20px;
}

.ro-page .hero-content-ro h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ro-page .hero-content-ro p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ro-page .hero-ro-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.ro-page .hero-ro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.ro-page .hero-ro-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.ro-page .section-padding {
    padding: 80px 20px;
}

.ro-page .alt-bg-ro {
    background-color: #f9f9f9;
}

.ro-page .content-split-ro {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ro-page .content-split-ro.reverse {
    flex-direction: row-reverse;
}

.ro-page .content-image-ro {
    flex: 1;
}

.ro-page .content-image-ro img {
    width: 100%;
}

.ro-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ro-page .content-text-ro {
    flex: 1;
}

.ro-page .content-text-ro p {
    color: #555;
    line-height: 1.75;
}

.ro-page .check-list-ro {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ro-page .check-list-ro li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.ro-page .check-list-ro li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.ro-page .ro-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.ro-page .ro-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.ro-page .ro-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.ro-page .ro-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.ro-page .types-ro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ro-page .type-ro-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ro-page .type-ro-card h3 {
    margin-bottom: 10px;
    color: #e91e63;
}

.ro-page .type-ro-card p {
    color: #666;
    line-height: 1.6;
}

.ro-page .cities-ro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.ro-page .city-ro-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.ro-page .city-ro-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.ro-page .city-ro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ro-page .city-ro-card:hover .city-ro-img img {
    transform: scale(1.06);
}

.ro-page .city-ro-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.ro-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.ro-page .city-ro-content p {
    color: #666;
    line-height: 1.65;
}

.ro-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.ro-page .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ro-page .reason-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.ro-page .meeting-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.ro-page .place-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ro-page .place-card:hover {
    transform: translateY(-5px);
}

.ro-page .place-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ro-page .dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ro-page .do-col, .ro-page .dont-col {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ro-page .do-col h3 { color: #27ae60; margin-bottom: 15px; }
.ro-page .dont-col h3 { color: #e74c3c; margin-bottom: 15px; }

.ro-page .ro-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.ro-page .ro-list-check li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.ro-page .ro-list-cross li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.ro-page .ro-list-cross li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.ro-page .table-responsive-ro {
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.ro-page .allowance-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.ro-page .allowance-table th, .ro-page .allowance-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.ro-page .allowance-table th {
    background: #fce4ec;
    color: #e91e63;
}

.ro-page .faq-ro-container {
    max-width: 900px;
    margin: 0 auto;
}

.ro-page .faq-ro-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ro-page .faq-ro-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.ro-page .faq-ro-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.ro-page .faq-ro-container details[open] summary::after {
    content: '-';
}

.ro-page .faq-ro-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.ro-page .cta-ro-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ro-page .cta-ro-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ro-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.ro-page .feature-icon-item {
    text-align: center;
}
.ro-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .ro-page .content-split-ro,
    .ro-page .content-split-ro.reverse {
        flex-direction: column;
    }
    .ro-page .hero-content-ro h1 {
        font-size: 2.2rem;
    }
    .ro-page .cities-ro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ro-page .ro-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ro-page .dos-donts-grid {
        grid-template-columns: 1fr;
    }
    .ro-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ro-page .hero-ro {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .ro-page .section-padding {
        padding: 56px 20px;
    }
    .ro-page .hero-content-ro p {
        font-size: 1rem;
    }
    .ro-page .cities-ro-grid {
        grid-template-columns: 1fr;
    }
    .ro-page .ro-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Sweden Page Specific Styles
   ========================================= */

.se-page .hero-se {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/Malmo.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.se-page .hero-content-se {
    max-width: 900px;
    padding: 0 20px;
}

.se-page .hero-content-se h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.se-page .hero-content-se p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.se-page .hero-se-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.se-page .hero-se-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.se-page .hero-se-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.se-page .section-padding {
    padding: 80px 20px;
}

.se-page .alt-bg-se {
    background-color: #f9f9f9;
}

.se-page .content-split-se {
    display: flex;
    align-items: center;
    gap: 40px;
}

.se-page .content-split-se.reverse {
    flex-direction: row-reverse;
}

.se-page .content-image-se {
    flex: 1;
}

.se-page .content-image-se img {
    width: 100%;
}

.se-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.se-page .content-text-se {
    flex: 1;
}

.se-page .content-text-se p {
    color: #555;
    line-height: 1.75;
}

.se-page .check-list-se {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.se-page .check-list-se li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.se-page .check-list-se li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.se-page .se-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.se-page .se-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.se-page .se-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.se-page .se-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.se-page .types-se-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.se-page .type-se-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.se-page .type-se-card h3 {
    margin-bottom: 10px;
    color: #e91e63;
}

.se-page .type-se-card p {
    color: #666;
    line-height: 1.6;
}

.se-page .cities-se-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.se-page .city-se-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.se-page .city-se-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.se-page .city-se-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.se-page .city-se-card:hover .city-se-img img {
    transform: scale(1.06);
}

.se-page .city-se-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.se-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.se-page .city-se-content p {
    color: #666;
    line-height: 1.65;
}

.se-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.se-page .steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.se-page .step-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.se-page .comparison-se-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.se-page .comp-col {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.se-page .comp-col h3 { margin-bottom: 15px; color: var(--secondary-color); }

.se-page .se-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.se-page .se-list-check li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.se-page .se-list-cross li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.se-page .se-list-cross li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.se-page .se-summary-box {
    margin-top: 20px;
    background: #fdf2f6;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #555;
}

.se-page .avoid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.se-page .avoid-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.se-page .avoid-item:hover {
    transform: translateY(-5px);
}

.se-page .faq-se-container {
    max-width: 900px;
    margin: 0 auto;
}

.se-page .faq-se-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.se-page .faq-se-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.se-page .faq-se-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.se-page .faq-se-container details[open] summary::after {
    content: '-';
}

.se-page .faq-se-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.se-page .cta-se-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.se-page .cta-se-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.se-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.se-page .feature-icon-item {
    text-align: center;
}
.se-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .se-page .content-split-se,
    .se-page .content-split-se.reverse {
        flex-direction: column;
    }
    .se-page .hero-content-se h1 {
        font-size: 2.2rem;
    }
    .se-page .cities-se-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .se-page .se-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .se-page .comparison-se-grid {
        grid-template-columns: 1fr;
    }
    .se-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .se-page .hero-se {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .se-page .section-padding {
        padding: 56px 20px;
    }
    .se-page .hero-content-se p {
        font-size: 1rem;
    }
    .se-page .cities-se-grid {
        grid-template-columns: 1fr;
    }
    .se-page .se-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Norway Page Specific Styles
   ========================================= */

.no-page .hero-no {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/country16.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.no-page .hero-content-no {
    max-width: 900px;
    padding: 0 20px;
}

.no-page .hero-content-no h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.no-page .hero-content-no p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.no-page .hero-no-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.no-page .hero-no-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.no-page .hero-no-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.no-page .section-padding {
    padding: 80px 20px;
}

.no-page .alt-bg-no {
    background-color: #f9f9f9;
}

.no-page .content-split-no {
    display: flex;
    align-items: center;
    gap: 40px;
}

.no-page .content-split-no.reverse {
    flex-direction: row-reverse;
}

.no-page .content-image-no {
    flex: 1;
}

.no-page .content-image-no img {
    width: 100%;
}

.no-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.no-page .content-text-no {
    flex: 1;
}

.no-page .content-text-no p {
    color: #555;
    line-height: 1.75;
}

.no-page .check-list-no {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.no-page .check-list-no li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.no-page .check-list-no li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.no-page .no-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.no-page .no-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.no-page .no-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.no-page .no-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.no-page .types-no-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.no-page .type-no-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.no-page .type-no-card h3 {
    margin-bottom: 10px;
    color: #e91e63;
}

.no-page .type-no-card p {
    color: #666;
    line-height: 1.6;
}

.no-page .cities-no-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.no-page .city-no-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.no-page .city-no-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.no-page .city-no-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.no-page .city-no-card:hover .city-no-img img {
    transform: scale(1.06);
}

.no-page .city-no-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.no-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.no-page .city-no-content p {
    color: #666;
    line-height: 1.65;
}

.no-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.no-page .boundaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.no-page .bound-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.no-page .travel-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.no-page .plan-step {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.no-page .step-num {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.no-page .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.no-page .safety-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.no-page .safety-card:hover {
    transform: translateY(-5px);
}

.no-page .safety-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.no-page .faq-no-container {
    max-width: 900px;
    margin: 0 auto;
}

.no-page .faq-no-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.no-page .faq-no-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.no-page .faq-no-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.no-page .faq-no-container details[open] summary::after {
    content: '-';
}

.no-page .faq-no-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.no-page .cta-no-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-page .cta-no-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.no-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.no-page .feature-icon-item {
    text-align: center;
}
.no-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .no-page .content-split-no,
    .no-page .content-split-no.reverse {
        flex-direction: column;
    }
    .no-page .hero-content-no h1 {
        font-size: 2.2rem;
    }
    .no-page .cities-no-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .no-page .no-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .no-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .no-page .hero-no {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .no-page .section-padding {
        padding: 56px 20px;
    }
    .no-page .hero-content-no p {
        font-size: 1rem;
    }
    .no-page .cities-no-grid {
        grid-template-columns: 1fr;
    }
    .no-page .no-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Portugal Page Specific Styles
   ========================================= */

.pt-page .hero-pt {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/country18.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.pt-page .hero-content-pt {
    max-width: 900px;
    padding: 0 20px;
}

.pt-page .hero-content-pt h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pt-page .hero-content-pt p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pt-page .hero-pt-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.pt-page .hero-pt-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.pt-page .hero-pt-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.pt-page .section-padding {
    padding: 80px 20px;
}

.pt-page .alt-bg-pt {
    background-color: #f9f9f9;
}

.pt-page .content-split-pt {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pt-page .content-split-pt.reverse {
    flex-direction: row-reverse;
}

.pt-page .content-image-pt {
    flex: 1;
}

.pt-page .content-image-pt img {
    width: 100%;
}

.pt-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pt-page .content-text-pt {
    flex: 1;
}

.pt-page .content-text-pt p {
    color: #555;
    line-height: 1.75;
}

.pt-page .check-list-pt {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pt-page .check-list-pt li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.pt-page .check-list-pt li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.pt-page .pt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.pt-page .pt-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.pt-page .pt-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.pt-page .pt-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.pt-page .types-pt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pt-page .type-pt-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pt-page .type-pt-card h3 {
    margin-bottom: 10px;
    color: #e91e63;
}

.pt-page .type-pt-card p {
    color: #666;
    line-height: 1.6;
}

.pt-page .cities-pt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.pt-page .city-pt-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.pt-page .city-pt-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.pt-page .city-pt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pt-page .city-pt-card:hover .city-pt-img img {
    transform: scale(1.06);
}

.pt-page .city-pt-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.pt-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.pt-page .city-pt-content p {
    color: #666;
    line-height: 1.65;
}

.pt-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.pt-page .wealth-pt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pt-page .wealth-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
    text-align: center;
}

.pt-page .wealth-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pt-page .comparison-pt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pt-page .comp-col {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pt-page .comp-col h3 { margin-bottom: 15px; color: var(--secondary-color); }

.pt-page .pt-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.pt-page .pt-list-check li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pt-page .avoid-pt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.pt-page .avoid-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.pt-page .avoid-item:hover {
    transform: translateY(-5px);
}

.pt-page .terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pt-page .term-item {
    background: #fdf2f6;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
}

.pt-page .faq-pt-container {
    max-width: 900px;
    margin: 0 auto;
}

.pt-page .faq-pt-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pt-page .faq-pt-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.pt-page .faq-pt-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.pt-page .faq-pt-container details[open] summary::after {
    content: '-';
}

.pt-page .faq-pt-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.pt-page .cta-pt-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pt-page .cta-pt-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pt-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.pt-page .feature-icon-item {
    text-align: center;
}
.pt-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .pt-page .content-split-pt,
    .pt-page .content-split-pt.reverse {
        flex-direction: column;
    }
    .pt-page .hero-content-pt h1 {
        font-size: 2.2rem;
    }
    .pt-page .cities-pt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pt-page .pt-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pt-page .comparison-pt-grid {
        grid-template-columns: 1fr;
    }
    .pt-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pt-page .hero-pt {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .pt-page .section-padding {
        padding: 56px 20px;
    }
    .pt-page .hero-content-pt p {
        font-size: 1rem;
    }
    .pt-page .cities-pt-grid {
        grid-template-columns: 1fr;
    }
    .pt-page .pt-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Malaysia Page Specific Styles
   ========================================= */

.my-page .hero-my {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/country36.jpg') center/cover no-repeat;
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.my-page .hero-content-my {
    max-width: 900px;
    padding: 0 20px;
}

.my-page .hero-content-my h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.my-page .hero-content-my p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 26px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.my-page .hero-my-btns .btn {
    margin-right: 12px;
    margin-top: 10px;
}

.my-page .hero-my-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.my-page .hero-my-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.my-page .section-padding {
    padding: 80px 20px;
}

.my-page .alt-bg-my {
    background-color: #f9f9f9;
}

.my-page .content-split-my {
    display: flex;
    align-items: center;
    gap: 40px;
}

.my-page .content-split-my.reverse {
    flex-direction: row-reverse;
}

.my-page .content-image-my {
    flex: 1;
}

.my-page .content-image-my img {
    width: 100%;
}

.my-page .rounded-shadow {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.my-page .content-text-my {
    flex: 1;
}

.my-page .content-text-my p {
    color: #555;
    line-height: 1.75;
}

.my-page .check-list-my {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.my-page .check-list-my li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.my-page .check-list-my li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 800;
}

.my-page .my-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.my-page .my-stat-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.my-page .my-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #e91e63;
    margin-bottom: 6px;
}

.my-page .my-stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.3;
}

.my-page .types-my-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.my-page .type-my-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.my-page .type-my-card h3 {
    margin-bottom: 10px;
    color: #e91e63;
}

.my-page .type-my-card p {
    color: #666;
    line-height: 1.6;
}

.my-page .cities-my-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.my-page .city-my-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.my-page .city-my-img {
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
}

.my-page .city-my-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.my-page .city-my-card:hover .city-my-img img {
    transform: scale(1.06);
}

.my-page .city-my-content h3 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.my-page .city-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #e91e63;
    margin-bottom: 12px;
}

.my-page .city-my-content p {
    color: #666;
    line-height: 1.65;
}

.my-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
    font-size: 0.9rem;
}

.my-page .comparison-my-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.my-page .comp-col {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.my-page .comp-col h3 { margin-bottom: 15px; color: var(--secondary-color); }

.my-page .my-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.my-page .my-list-check li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.my-page .my-list-cross li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.my-page .my-list-cross li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.my-page .tips-my-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.my-page .tip-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid #e91e63;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
    text-align: center;
}

.my-page .tip-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.my-page .allowance-advice {
    margin-top: 20px;
    background: #fdf2f6;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #555;
}

.my-page .challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.my-page .challenge-item {
    background: #fff8fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #fce4ec;
}

.my-page .scam-prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.my-page .scam-tip {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.my-page .scam-tip h3 { color: #e74c3c; margin-bottom: 10px; }

.my-page .faq-my-container {
    max-width: 900px;
    margin: 0 auto;
}

.my-page .faq-my-container details {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.my-page .faq-my-container summary {
    padding: 18px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.my-page .faq-my-container summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 16px;
    font-weight: 900;
    color: #e91e63;
}

.my-page .faq-my-container details[open] summary::after {
    content: '-';
}

.my-page .faq-my-container details p {
    padding: 0 18px 18px;
    border-top: 1px solid #f4f4f4;
    color: #555;
    line-height: 1.75;
}

.my-page .cta-my-box {
    background: linear-gradient(135deg, #fff0f5, #ffffff);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.my-page .cta-my-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.my-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.my-page .feature-icon-item {
    text-align: center;
}
.my-page .feature-icon-item svg {
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .my-page .content-split-my,
    .my-page .content-split-my.reverse {
        flex-direction: column;
    }
    .my-page .hero-content-my h1 {
        font-size: 2.2rem;
    }
    .my-page .cities-my-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .my-page .my-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .my-page .comparison-my-grid {
        grid-template-columns: 1fr;
    }
    .my-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .my-page .hero-my {
        height: auto;
        padding: 100px 0 60px;
        min-height: auto;
    }
    .my-page .section-padding {
        padding: 56px 20px;
    }
    .my-page .hero-content-my p {
        font-size: 1rem;
    }
    .my-page .cities-my-grid {
        grid-template-columns: 1fr;
    }
    .my-page .my-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Turkey (TR) Page Styles
   ========================================= */

.tr-page {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

.tr-page .section-padding {
    padding: 80px 20px;
}

.tr-page .alt-bg-tr {
    background-color: #fff;
}

.tr-page .hero-tr {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/country30.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.tr-page .hero-content-tr {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.tr-page .hero-content-tr h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.tr-page .hero-content-tr p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    font-weight: 300;
}

.tr-page .hero-tr-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.tr-page .hero-tr-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tr-page .hero-tr-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.tr-page .section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tr-page .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tr-page .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e91e63;
    margin: 15px auto 0;
}

.tr-page .section-title p {
    font-size: 1.15rem;
    color: #666;
}

/* Split Content */
.tr-page .content-split-tr {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.tr-page .content-split-tr.reverse {
    flex-direction: row-reverse;
}

.tr-page .content-image-tr {
    flex: 1;
}

.tr-page .content-image-tr img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tr-page .content-text-tr {
    flex: 1;
}

.tr-page .content-text-tr p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.tr-page .check-list-tr {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.tr-page .check-list-tr li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.tr-page .check-list-tr li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Stats Grid */
.tr-page .tr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tr-page .tr-stat-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid #e91e63;
}

.tr-page .tr-stat-box:hover {
    transform: translateY(-5px);
}

.tr-page .tr-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 5px;
}

.tr-page .tr-stat-desc {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

/* Types Grid */
.tr-page .types-tr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tr-page .type-tr-card {
    background: #fafafa;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.tr-page .type-tr-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.tr-page .type-tr-card h3 {
    margin-bottom: 15px;
    color: #e91e63;
    font-size: 1.4rem;
}

/* Cities Grid */
.tr-page .cities-tr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.tr-page .city-tr-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.tr-page .city-tr-card:hover {
    transform: translateY(-5px);
}

.tr-page .city-tr-img {
    height: 200px;
    overflow: hidden;
}

.tr-page .city-tr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tr-page .city-tr-card:hover .city-tr-img img {
    transform: scale(1.1);
}

.tr-page .city-tr-content {
    padding: 25px;
}

.tr-page .city-tr-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
}

.tr-page .city-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    background: #fce4ec;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 15px;
}

.tr-page .city-tip {
    background: #f8f9fb;
    border-left: 4px solid #e91e63;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

/* Steps */
.tr-page .steps-tr-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tr-page .step-item {
    text-align: center;
    padding: 20px;
}

.tr-page .step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e91e63;
}

/* Comparison */
.tr-page .comparison-tr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tr-page .comp-col {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.tr-page .comp-col h3 {
    color: #e91e63;
    margin-bottom: 20px;
    text-align: center;
}

.tr-page .tr-list-check li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.tr-page .tr-list-check li::before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: #f1c40f;
}

/* Stories */
.tr-page .stories-tr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tr-page .story-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tr-page .story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tr-page .story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.tr-page .story-loc {
    font-size: 0.9rem;
    color: #888;
}

.tr-page .story-summary {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ */
.tr-page .faq-tr-container {
    max-width: 800px;
    margin: 0 auto;
}

.tr-page .faq-tr-container details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.tr-page .faq-tr-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    background: #fff;
}

.tr-page .faq-tr-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #e91e63;
    font-size: 1.5rem;
}

.tr-page .faq-tr-container details[open] summary::after {
    content: '-';
}

.tr-page .faq-tr-container p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* CTA & Features */
.tr-page .cta-tr-box {
    background: linear-gradient(135deg, #fff0f5, #fff);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.1);
}

.tr-page .cta-tr-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.tr-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tr-page .feature-icon-item {
    text-align: center;
}

.tr-page .feature-icon-item svg {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tr-page .cities-tr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tr-page .steps-tr-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tr-page .hero-content-tr h1 {
        font-size: 2.5rem;
    }
    .tr-page .content-split-tr, 
    .tr-page .content-split-tr.reverse {
        flex-direction: column;
    }
    .tr-page .tr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tr-page .cities-tr-grid {
        grid-template-columns: 1fr;
    }
    .tr-page .comparison-tr-grid {
        grid-template-columns: 1fr;
    }
    .tr-page .stories-tr-grid {
        grid-template-columns: 1fr;
    }
    .tr-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .tr-page .cta-tr-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .tr-page .hero-tr {
        height: auto;
        padding: 100px 0 60px;
    }
    .tr-page .section-padding {
        padding: 56px 20px;
    }
}

/* =========================================
   Philippines (PH) Page Styles
   ========================================= */

.ph-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.ph-page .section-padding {
    padding: 60px 20px;
}

.ph-page .alt-bg-ph {
    background-color: #fff8fa;
}

.ph-page .hero-ph {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/country16.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.ph-page .hero-content-ph {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.ph-page .hero-content-ph h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.ph-page .hero-content-ph p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 400;
}

.ph-page .hero-ph-btns {
    margin-bottom: 30px;
}

.ph-page .hero-ph-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ph-page .hero-ph-badge {
    background: rgba(233, 30, 99, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ph-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ph-page .section-title h2 {
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.ph-page .section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Split Content */
.ph-page .content-split-ph {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.ph-page .content-split-ph.reverse {
    flex-direction: row-reverse;
}

.ph-page .content-image-ph {
    flex: 1;
}

.ph-page .content-image-ph img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ph-page .content-text-ph {
    flex: 1;
}

.ph-page .content-text-ph p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Stats Grid */
.ph-page .ph-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ph-page .ph-stat-box {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.ph-page .ph-stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ph-page .ph-stat-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Cities Grid */
.ph-page .cities-ph-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.ph-page .city-ph-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.ph-page .city-ph-card:hover {
    transform: translateY(-5px);
}

.ph-page .city-ph-img {
    height: 200px;
    overflow: hidden;
}

.ph-page .city-ph-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ph-page .city-ph-card:hover .city-ph-img img {
    transform: scale(1.1);
}

.ph-page .city-ph-content {
    padding: 25px;
}

.ph-page .city-ph-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.ph-page .city-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    background: #e91e63;
    color: #fff;
    margin-bottom: 15px;
}

.ph-page .city-tip {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
}

/* Hotspots */
.ph-page .hotspots-ph-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ph-page .hotspot-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ph-page .hotspot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ph-page .hotspot-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ph-page .hotspot-item h3 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Comparison */
.ph-page .comparison-ph-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ph-page .comp-col {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #e91e63;
}

.ph-page .comp-col h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.ph-page .ph-list-check {
    list-style: none;
    padding: 0;
}

.ph-page .ph-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.ph-page .ph-list-check li::before {
    content: 'A�?;
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Gifts */
.ph-page .gifts-ph-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ph-page .gift-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.ph-page .gift-card h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* FAQ */
.ph-page .faq-ph-container {
    max-width: 800px;
    margin: 0 auto;
}

.ph-page .faq-ph-container details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ph-page .faq-ph-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.ph-page .faq-ph-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #e91e63;
}

.ph-page .faq-ph-container details[open] summary::after {
    content: '-';
}

.ph-page .faq-ph-container p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Features */
.ph-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ph-page .feature-icon-item {
    text-align: center;
}

.ph-page .feature-icon-item svg {
    margin-bottom: 15px;
}

/* CTA */
.ph-page .cta-ph-box {
    background: linear-gradient(135deg, #e91e63, #ff6090);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.ph-page .cta-ph-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ph-page .cta-ph-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ph-page .cta-ph-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ph-page .cta-ph-actions .btn {
    background: #fff;
    color: #e91e63;
}

.ph-page .cta-ph-actions .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.ph-page .cta-ph-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.ph-page .cta-ph-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .ph-page .cities-ph-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ph-page .ph-stats-grid,
    .ph-page .hotspots-ph-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ph-page .hero-content-ph h1 {
        font-size: 2.2rem;
    }
    .ph-page .content-split-ph, 
    .ph-page .content-split-ph.reverse {
        flex-direction: column;
    }
    .ph-page .cities-ph-grid {
        grid-template-columns: 1fr;
    }
    .ph-page .comparison-ph-grid {
        grid-template-columns: 1fr;
    }
    .ph-page .gifts-ph-grid {
        grid-template-columns: 1fr;
    }
    .ph-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .ph-page .cta-ph-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .ph-page .hero-ph {
        height: auto;
        padding: 100px 0 60px;
    }
    .ph-page .section-padding {
        padding: 40px 20px;
    }
}

/* =========================================
   Taiwan (TW) Page Styles
   ========================================= */

.tw-page {
    font-family: 'Microsoft JhengHei', 'PingFang TC', 'Heiti TC', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fdfdfd;
}

.tw-page .section-padding {
    padding: 60px 20px;
}

.tw-page .alt-bg-tw {
    background-color: #fcfcfc;
}

.tw-page .hero-tw {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/country42.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.tw-page .hero-content-tw {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.tw-page .hero-content-tw h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.tw-page .hero-content-tw p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 400;
    letter-spacing: 1px;
}

.tw-page .hero-tw-btns {
    margin-bottom: 30px;
}

.tw-page .hero-tw-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tw-page .hero-tw-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
}

.tw-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tw-page .section-title h2 {
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: 700;
}

.tw-page .section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Split Content */
.tw-page .content-split-tw {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.tw-page .content-split-tw.reverse {
    flex-direction: row-reverse;
}

.tw-page .content-image-tw {
    flex: 1;
}

.tw-page .content-image-tw img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tw-page .content-text-tw {
    flex: 1;
}

.tw-page .content-text-tw p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Cities Grid */
.tw-page .cities-tw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.tw-page .city-tw-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.tw-page .city-tw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tw-page .city-tw-img {
    height: 200px;
    overflow: hidden;
}

.tw-page .city-tw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tw-page .city-tw-card:hover .city-tw-img img {
    transform: scale(1.1);
}

.tw-page .city-tw-content {
    padding: 25px;
}

.tw-page .city-tw-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.tw-page .city-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    background: #e91e63;
    color: #fff;
    margin-bottom: 15px;
}

.tw-page .city-tip {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid #e91e63;
}

/* Hotspots */
.tw-page .hotspots-tw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tw-page .hotspot-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tw-page .hotspot-item:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.tw-page .hotspot-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tw-page .hotspot-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    height: 40px; /* Align heights */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison Table */
.tw-page .comparison-tw-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
}

.tw-page .comparison-tw-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.tw-page .comparison-tw-table th,
.tw-page .comparison-tw-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tw-page .comparison-tw-table th {
    background-color: #f8f8f8;
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1rem;
}

.tw-page .comparison-tw-table tr:last-child td {
    border-bottom: none;
}

.tw-page .comparison-summary {
    margin-top: 20px;
    padding: 20px;
    background: #fff0f5;
    border-radius: 10px;
    color: #555;
}

/* Steps */
.tw-page .steps-tw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tw-page .step-tw-item {
    text-align: center;
    padding: 20px;
}

.tw-page .step-number {
    width: 50px;
    height: 50px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.tw-page .step-tw-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
}

/* Safety */
.tw-page .safety-tw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tw-page .safety-col {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #e91e63;
}

.tw-page .safety-col h3 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4rem;
}

.tw-page .tw-list-check {
    list-style: none;
    padding: 0;
}

.tw-page .tw-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #555;
}

.tw-page .tw-list-check li::before {
    content: 'A�?;
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Stories */
.tw-page .stories-tw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tw-page .story-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.tw-page .story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tw-page .story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.tw-page .story-loc {
    font-size: 0.9rem;
    color: #888;
}

.tw-page .story-summary {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* CTA */
.tw-page .cta-tw-box {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.tw-page .cta-tw-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tw-page .cta-tw-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tw-page .cta-tw-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tw-page .cta-tw-actions .btn {
    background: #fff;
    color: #e91e63;
    border: none;
}

.tw-page .cta-tw-actions .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.tw-page .cta-tw-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.tw-page .cta-tw-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .tw-page .cities-tw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tw-page .hotspots-tw-grid,
    .tw-page .steps-tw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tw-page .hero-content-tw h1 {
        font-size: 2.2rem;
    }
    .tw-page .content-split-tw, 
    .tw-page .content-split-tw.reverse {
        flex-direction: column;
    }
    .tw-page .cities-tw-grid {
        grid-template-columns: 1fr;
    }
    .tw-page .safety-tw-grid {
        grid-template-columns: 1fr;
    }
    .tw-page .stories-tw-grid {
        grid-template-columns: 1fr;
    }
    .tw-page .cta-tw-actions {
        flex-direction: column;
    }
    .tw-page .hotspots-tw-grid {
        grid-template-columns: 1fr;
    }
    .tw-page .steps-tw-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tw-page .hero-tw {
        height: auto;
        padding: 100px 0 60px;
    }
    .tw-page .section-padding {
        padding: 40px 20px;
    }
}

/* =========================================
   Hong Kong (HK) Page Styles
   ========================================= */

.hk-page {
    font-family: 'PingFang HK', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.hk-page .section-padding {
    padding: 70px 20px;
}

.hk-page .alt-bg-hk {
    background-color: #f8f9fa;
}

.hk-page .hero-hk {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaddyhong-kong-587x378.jpeg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.hk-page .hero-content-hk {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hk-page .hero-content-hk h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hk-page .hero-content-hk p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hk-page .hero-hk-btns {
    margin-bottom: 30px;
}

.hk-page .hero-hk-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hk-page .hero-hk-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hk-page .section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hk-page .section-title h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.hk-page .section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e91e63;
    margin: 15px auto 0;
}

.hk-page .section-title p {
    font-size: 1.15rem;
    color: #666;
}

/* Split Content */
.hk-page .content-split-hk {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.hk-page .content-split-hk.reverse {
    flex-direction: row-reverse;
}

.hk-page .content-image-hk {
    flex: 1;
}

.hk-page .content-image-hk img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hk-page .content-text-hk {
    flex: 1;
}

.hk-page .content-text-hk p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Features Grid */
.hk-page .hk-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hk-page .hk-feature-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.hk-page .hk-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #e91e63;
}

.hk-page .icon-wrapper-hk {
    width: 70px;
    height: 70px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hk-page .hk-feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.hk-page .hk-feature-box p {
    font-size: 0.95rem;
    color: #666;
}

/* Places Grid */
.hk-page .places-hk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hk-page .place-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.hk-page .place-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.hk-page .place-img {
    height: 220px;
    overflow: hidden;
}

.hk-page .place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hk-page .place-card:hover .place-img img {
    transform: scale(1.05);
}

.hk-page .place-content {
    padding: 25px;
}

.hk-page .place-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.hk-page .place-addr {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: block;
    font-style: italic;
}

.hk-page .place-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
}

/* Privacy Box */
.hk-page .privacy-hk-box {
    background: #fff;
    border-left: 5px solid #e91e63;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hk-page .hk-list-check {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hk-page .hk-list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.hk-page .hk-list-check li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Time Grid */
.hk-page .time-hk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hk-page .time-card {
    background: #2c3e50;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
}

.hk-page .time-card h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hk-page .time-card p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Stories */
.hk-page .stories-hk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hk-page .story-hk-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.hk-page .story-hk-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hk-page .story-hk-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.hk-page .story-hk-role {
    font-size: 0.9rem;
    color: #e91e63;
    font-weight: 600;
    text-transform: uppercase;
}

/* FAQ */
.hk-page .faq-hk-container {
    max-width: 800px;
    margin: 0 auto;
}

.hk-page .faq-hk-container details {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.hk-page .faq-hk-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    background: #fdfdfd;
}

.hk-page .faq-hk-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #e91e63;
}

.hk-page .faq-hk-container details[open] summary::after {
    content: '-';
}

.hk-page .faq-hk-container p {
    padding: 20px;
    border-top: 1px solid #eee;
    color: #555;
}

/* CTA */
.hk-page .cta-hk-box {
    background: #222;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.hk-page .cta-hk-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e91e63;
}

.hk-page .cta-hk-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hk-page .cta-hk-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hk-page .cta-hk-actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hk-page .cta-hk-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hk-page .cta-hk-actions .btn-secondary:hover {
    background: #fff;
    color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .hk-page .places-hk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hk-page .hk-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hk-page .hero-content-hk h1 {
        font-size: 2.5rem;
    }
    .hk-page .content-split-hk, 
    .hk-page .content-split-hk.reverse {
        flex-direction: column;
    }
    .hk-page .places-hk-grid {
        grid-template-columns: 1fr;
    }
    .hk-page .time-hk-grid {
        grid-template-columns: 1fr;
    }
    .hk-page .stories-hk-grid {
        grid-template-columns: 1fr;
    }
    .hk-page .cta-hk-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hk-page .hero-hk {
        height: auto;
        padding: 100px 0 60px;
    }
    .hk-page .section-padding {
        padding: 50px 20px;
    }
}

/* =========================================
   Vietnam (VN) Page Styles
   ========================================= */

.vn-page {
    font-family: 'Be Vietnam Pro', 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fffefb;
}

.vn-page .section-padding {
    padding: 65px 20px;
}

.vn-page .alt-bg-vn {
    background-color: #fff5f7;
}

.vn-page .hero-vn {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/sugardaddyvietnam-587x397.jpeg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.vn-page .hero-content-vn {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.vn-page .hero-content-vn h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.25;
}

.vn-page .hero-content-vn p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-weight: 400;
}

.vn-page .hero-vn-btns {
    margin-bottom: 30px;
}

.vn-page .hero-vn-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.vn-page .hero-vn-badge {
    background: #e91e63;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.vn-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vn-page .section-title h2 {
    font-size: 2.2rem;
    color: #c2185b;
    margin-bottom: 15px;
}

.vn-page .section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Split Content */
.vn-page .content-split-vn {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.vn-page .content-split-vn.reverse {
    flex-direction: row-reverse;
}

.vn-page .content-image-vn {
    flex: 1;
}

.vn-page .content-image-vn img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vn-page .content-text-vn {
    flex: 1;
}

.vn-page .content-text-vn p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Cities Grid */
.vn-page .cities-vn-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.vn-page .city-vn-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.vn-page .city-vn-card:hover {
    transform: translateY(-5px);
}

.vn-page .city-vn-img {
    height: 200px;
    overflow: hidden;
}

.vn-page .city-vn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vn-page .city-vn-card:hover .city-vn-img img {
    transform: scale(1.1);
}

.vn-page .city-vn-content {
    padding: 20px;
}

.vn-page .city-vn-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.vn-page .city-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #c2185b;
    margin-bottom: 15px;
    font-weight: 600;
}

.vn-page .city-tip {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid #e91e63;
}

/* Features */
.vn-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vn-page .feature-icon-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vn-page .feature-icon-item svg {
    margin-bottom: 15px;
}

.vn-page .feature-icon-item h3 {
    color: #c2185b;
    margin-bottom: 10px;
}

/* Appearance List */
.vn-page .vn-list-check {
    list-style: none;
    padding: 0;
}

.vn-page .vn-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
}

.vn-page .vn-list-check li::before {
    content: 'A�?;
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Comparison Table */
.vn-page .comparison-vn-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 25px;
}

.vn-page .comparison-vn-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.vn-page .comparison-vn-table th,
.vn-page .comparison-vn-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.vn-page .comparison-vn-table th {
    background-color: #f8f8f8;
    color: #c2185b;
    font-weight: 700;
}

.vn-page .comparison-summary {
    margin-top: 20px;
    padding: 15px;
    background: #fff0f5;
    border-radius: 5px;
    color: #555;
}

/* Stories */
.vn-page .stories-vn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vn-page .story-vn-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.vn-page .story-vn-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vn-page .story-vn-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.vn-page .story-vn-role {
    font-size: 0.9rem;
    color: #888;
}

/* FAQ */
.vn-page .faq-vn-container {
    max-width: 800px;
    margin: 0 auto;
}

.vn-page .faq-vn-container details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.vn-page .faq-vn-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.vn-page .faq-vn-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #e91e63;
}

.vn-page .faq-vn-container details[open] summary::after {
    content: '-';
}

.vn-page .faq-vn-container p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.vn-page .cta-vn-box {
    background: linear-gradient(135deg, #d81b60, #ff4081);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.vn-page .cta-vn-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vn-page .cta-vn-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.vn-page .cta-vn-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.vn-page .cta-vn-actions .btn {
    background: #fff;
    color: #d81b60;
}

.vn-page .cta-vn-actions .btn:hover {
    background: #fce4ec;
}

.vn-page .cta-vn-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.vn-page .cta-vn-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .vn-page .cities-vn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vn-page .hero-content-vn h1 {
        font-size: 2.2rem;
    }
    .vn-page .content-split-vn, 
    .vn-page .content-split-vn.reverse {
        flex-direction: column;
    }
    .vn-page .cities-vn-grid {
        grid-template-columns: 1fr;
    }
    .vn-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .vn-page .stories-vn-grid {
        grid-template-columns: 1fr;
    }
    .vn-page .cta-vn-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .vn-page .hero-vn {
        height: auto;
        padding: 100px 0 60px;
    }
    .vn-page .section-padding {
        padding: 40px 20px;
    }
}

/* =========================================
   Colombia (CO) Page Styles
   ========================================= */

.co-page {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fffcf5; /* Warm background */
}

.co-page .section-padding {
    padding: 70px 20px;
}

.co-page .alt-bg-co {
    background-color: #fff;
}

.co-page .hero-co {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/Cartagena.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.co-page .hero-content-co {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.co-page .hero-content-co h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    line-height: 1.2;
    color: #fff;
}

.co-page .hero-content-co p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    font-weight: 400;
}

.co-page .hero-co-btns {
    margin-bottom: 30px;
}

.co-page .hero-co-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.co-page .hero-co-badge {
    background: #fbc02d; /* Yellow/Gold for Colombia */
    color: #333;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.co-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.co-page .section-title h2 {
    font-size: 2.5rem;
    color: #d32f2f; /* Red accent */
    margin-bottom: 15px;
    font-weight: 800;
}

.co-page .section-title p {
    font-size: 1.15rem;
    color: #555;
}

/* Split Content */
.co-page .content-split-co {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.co-page .content-split-co.reverse {
    flex-direction: row-reverse;
}

.co-page .content-image-co {
    flex: 1;
}

.co-page .content-image-co img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.co-page .content-image-co img:hover {
    transform: scale(1.02);
}

.co-page .content-text-co {
    flex: 1;
}

.co-page .content-text-co p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Cities Grid */
.co-page .cities-co-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.co-page .city-co-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.co-page .city-co-card:hover {
    transform: translateY(-8px);
}

.co-page .city-co-img {
    height: 220px;
    overflow: hidden;
}

.co-page .city-co-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.co-page .city-co-card:hover .city-co-img img {
    transform: scale(1.1);
}

.co-page .city-co-content {
    padding: 25px;
}

.co-page .city-co-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
}

.co-page .city-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #fff9c4;
    color: #fbc02d;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.co-page .city-tip {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    border-left: 4px solid #d32f2f;
}

/* Features */
.co-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.co-page .feature-icon-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.co-page .feature-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.co-page .feature-icon-item svg {
    margin-bottom: 20px;
    stroke: #d32f2f;
}

.co-page .feature-icon-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* List Check */
.co-page .co-list-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.co-page .co-list-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.co-page .co-list-check li::before {
    content: 'A�?;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: #fbc02d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Comparison Table */
.co-page .comparison-co-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 30px;
}

.co-page .comparison-co-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.co-page .comparison-co-table th,
.co-page .comparison-co-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.co-page .comparison-co-table th {
    background-color: #ffebee;
    color: #d32f2f;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.co-page .comparison-summary {
    margin-top: 25px;
    padding: 20px;
    background: #fff8e1;
    border-radius: 10px;
    color: #555;
    border-left: 5px solid #fbc02d;
}

/* Stories */
.co-page .stories-co-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.co-page .story-co-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.co-page .story-co-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: #fce4ec;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.co-page .story-co-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.co-page .story-co-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.co-page .story-co-role {
    font-size: 0.95rem;
    color: #d32f2f;
    font-weight: 600;
}

.co-page .story-co-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
}

/* FAQ */
.co-page .faq-co-container {
    max-width: 850px;
    margin: 0 auto;
}

.co-page .faq-co-container details {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.co-page .faq-co-container summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    font-size: 1.1rem;
    color: #333;
}

.co-page .faq-co-container summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-weight: 900;
    color: #d32f2f;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.co-page .faq-co-container details[open] summary::after {
    content: '-';
}

.co-page .faq-co-container p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

/* CTA */
.co-page .cta-co-box {
    background: linear-gradient(135deg, #d32f2f, #f44336);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    border-radius: 0;
}

.co-page .cta-co-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.co-page .cta-co-box p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.co-page .cta-co-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.co-page .cta-co-actions .btn {
    background: #fbc02d;
    color: #d32f2f;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 800;
}

.co-page .cta-co-actions .btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.co-page .cta-co-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
}

.co-page .cta-co-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .co-page .cities-co-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .co-page .hero-content-co h1 {
        font-size: 2.5rem;
    }
    .co-page .content-split-co, 
    .co-page .content-split-co.reverse {
        flex-direction: column;
    }
    .co-page .cities-co-grid {
        grid-template-columns: 1fr;
    }
    .co-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .co-page .stories-co-grid {
        grid-template-columns: 1fr;
    }
    .co-page .cta-co-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .co-page .hero-co {
        height: auto;
        padding: 100px 0 60px;
    }
    .co-page .section-padding {
        padding: 50px 20px;
    }
}

/* =========================================
   Chile (CL) Page Styles
   ========================================= */

.cl-page {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.cl-page .section-padding {
    padding: 70px 20px;
}

.cl-page .alt-bg-cl {
    background-color: #f7f9fa; /* Cool greyish/white background */
}

.cl-page .hero-cl {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/Santiago.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.cl-page .hero-content-cl {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.cl-page .hero-content-cl h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.cl-page .hero-content-cl p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
    font-weight: 300;
}

.cl-page .hero-cl-btns {
    margin-bottom: 30px;
}

.cl-page .hero-cl-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cl-page .hero-cl-badge {
    background: rgba(0, 50, 160, 0.8); /* Chilean Blue */
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.cl-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cl-page .section-title h2 {
    font-size: 2.4rem;
    color: #d52b1e; /* Chilean Red */
    margin-bottom: 15px;
}

.cl-page .section-title p {
    font-size: 1.15rem;
    color: #666;
}

/* Split Content */
.cl-page .content-split-cl {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.cl-page .content-split-cl.reverse {
    flex-direction: row-reverse;
}

.cl-page .content-image-cl {
    flex: 1;
}

.cl-page .content-image-cl img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cl-page .content-text-cl {
    flex: 1;
}

.cl-page .content-text-cl p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Cities Grid */
.cl-page .cities-cl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.cl-page .city-cl-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.cl-page .city-cl-card:hover {
    transform: translateY(-5px);
}

.cl-page .city-cl-img {
    height: 200px;
    overflow: hidden;
}

.cl-page .city-cl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cl-page .city-cl-card:hover .city-cl-img img {
    transform: scale(1.1);
}

.cl-page .city-cl-content {
    padding: 25px;
}

.cl-page .city-cl-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.cl-page .city-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    background: #e3f2fd;
    color: #1976d2;
    margin-bottom: 15px;
    font-weight: 600;
}

.cl-page .city-tip {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid #d52b1e;
}

/* Features */
.cl-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cl-page .feature-icon-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid #0039a6; /* Chilean Blue */
}

.cl-page .feature-icon-item svg {
    margin-bottom: 20px;
    stroke: #d52b1e;
}

.cl-page .feature-icon-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Hotspots */
.cl-page .hotspots-cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cl-page .hotspot-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.cl-page .hotspot-item:hover {
    transform: translateY(-5px);
}

.cl-page .hotspot-img {
    height: 150px;
    overflow: hidden;
}

.cl-page .hotspot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cl-page .hotspot-item h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    color: #333;
}

.cl-page .hotspot-item p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Comparison Table */
.cl-page .comparison-cl-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 25px;
}

.cl-page .comparison-cl-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cl-page .comparison-cl-table th,
.cl-page .comparison-cl-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cl-page .comparison-cl-table th {
    background-color: #f0f4f8;
    color: #0039a6;
    font-weight: 700;
}

/* Stories */
.cl-page .stories-cl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cl-page .story-cl-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.cl-page .story-cl-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cl-page .story-cl-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d52b1e;
}

.cl-page .story-cl-role {
    font-size: 0.9rem;
    color: #0039a6;
    font-weight: 600;
}

/* FAQ */
.cl-page .faq-cl-container {
    max-width: 800px;
    margin: 0 auto;
}

.cl-page .faq-cl-container details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.cl-page .faq-cl-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.cl-page .faq-cl-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #d52b1e;
}

.cl-page .faq-cl-container details[open] summary::after {
    content: '-';
}

.cl-page .faq-cl-container p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.cl-page .cta-cl-box {
    background: linear-gradient(135deg, #0039a6, #004ac2);
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.cl-page .cta-cl-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cl-page .cta-cl-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cl-page .cta-cl-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cl-page .cta-cl-actions .btn {
    background: #d52b1e;
    color: #fff;
}

.cl-page .cta-cl-actions .btn:hover {
    background: #b71c1c;
}

.cl-page .cta-cl-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cl-page .cta-cl-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .cl-page .cities-cl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cl-page .hotspots-cl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cl-page .hero-content-cl h1 {
        font-size: 2.5rem;
    }
    .cl-page .content-split-cl, 
    .cl-page .content-split-cl.reverse {
        flex-direction: column;
    }
    .cl-page .cities-cl-grid {
        grid-template-columns: 1fr;
    }
    .cl-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .cl-page .stories-cl-grid {
        grid-template-columns: 1fr;
    }
    .cl-page .cta-cl-actions {
        flex-direction: column;
    }
    .cl-page .hotspots-cl-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cl-page .hero-cl {
        height: auto;
        padding: 100px 0 60px;
    }
    .cl-page .section-padding {
        padding: 40px 20px;
    }
}

/* =========================================
   Peru (PE) Page Styles
   ========================================= */

.pe-page {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.pe-page .section-padding {
    padding: 70px 20px;
}

.pe-page .alt-bg-pe {
    background-color: #f9f9f9;
}

.pe-page .hero-pe {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/country38.jpg') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset fixed header */
}

.pe-page .hero-content-pe {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.pe-page .hero-content-pe h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.pe-page .hero-content-pe p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    font-weight: 400;
}

.pe-page .hero-pe-btns {
    margin-bottom: 30px;
}

.pe-page .hero-pe-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.pe-page .hero-pe-badge {
    background: #d91023; /* Peru Red */
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pe-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pe-page .section-title h2 {
    font-size: 2.4rem;
    color: #d91023;
    margin-bottom: 15px;
    font-weight: 700;
}

.pe-page .section-title p {
    font-size: 1.15rem;
    color: #666;
}

/* Split Content */
.pe-page .content-split-pe {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.pe-page .content-split-pe.reverse {
    flex-direction: row-reverse;
}

.pe-page .content-image-pe {
    flex: 1;
}

.pe-page .content-image-pe img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pe-page .content-text-pe {
    flex: 1;
}

.pe-page .content-text-pe p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Cities Grid */
.pe-page .cities-pe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.pe-page .city-pe-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.pe-page .city-pe-card:hover {
    transform: translateY(-8px);
}

.pe-page .city-pe-img {
    height: 220px;
    overflow: hidden;
}

.pe-page .city-pe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pe-page .city-pe-card:hover .city-pe-img img {
    transform: scale(1.1);
}

.pe-page .city-pe-content {
    padding: 25px;
}

.pe-page .city-pe-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.pe-page .city-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #fce4ec;
    color: #d91023;
    margin-bottom: 15px;
    font-weight: 600;
}

.pe-page .city-tip {
    background: #fff8e1; /* Inca Gold Hint */
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid #d4af37;
}

/* Features */
.pe-page .features-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pe-page .feature-icon-item {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.pe-page .feature-icon-item svg {
    margin-bottom: 20px;
    stroke: #d91023;
}

.pe-page .feature-icon-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* List Check */
.pe-page .pe-list-check {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pe-page .pe-list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.pe-page .pe-list-check li::before {
    content: 'A�?;
    position: absolute;
    left: 0;
    top: 2px;
    color: #d91023;
    font-weight: 900;
    font-size: 1.1rem;
}

/* Hotspots */
.pe-page .hotspots-pe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pe-page .hotspot-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.pe-page .hotspot-item:hover {
    transform: translateY(-5px);
}

.pe-page .hotspot-img {
    height: 160px;
    overflow: hidden;
}

.pe-page .hotspot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pe-page .hotspot-item h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    color: #333;
}

.pe-page .hotspot-item p {
    padding: 0 15px 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Stories */
.pe-page .stories-pe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pe-page .story-pe-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #d91023;
}

.pe-page .story-pe-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pe-page .story-pe-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.pe-page .story-pe-role {
    font-size: 0.9rem;
    color: #d91023;
    font-weight: 600;
}

/* FAQ */
.pe-page .faq-pe-container {
    max-width: 800px;
    margin: 0 auto;
}

.pe-page .faq-pe-container details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pe-page .faq-pe-container summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    font-size: 1.05rem;
}

.pe-page .faq-pe-container summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #d91023;
    font-size: 1.2rem;
}

.pe-page .faq-pe-container details[open] summary::after {
    content: '-';
}

.pe-page .faq-pe-container p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.pe-page .cta-pe-box {
    background: linear-gradient(135deg, #2c3e50, #000);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.pe-page .cta-pe-box h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #d91023;
}

.pe-page .cta-pe-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pe-page .cta-pe-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pe-page .cta-pe-actions .btn {
    background: #d91023;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pe-page .cta-pe-actions .btn:hover {
    background: #b71c1c;
}

.pe-page .cta-pe-actions .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.pe-page .cta-pe-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .pe-page .cities-pe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pe-page .hotspots-pe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pe-page .hero-content-pe h1 {
        font-size: 2.5rem;
    }
    .pe-page .content-split-pe, 
    .pe-page .content-split-pe.reverse {
        flex-direction: column;
    }
    .pe-page .cities-pe-grid {
        grid-template-columns: 1fr;
    }
    .pe-page .features-icon-grid {
        grid-template-columns: 1fr;
    }
    .pe-page .stories-pe-grid {
        grid-template-columns: 1fr;
    }
    .pe-page .cta-pe-actions {
        flex-direction: column;
    }
    .pe-page .hotspots-pe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pe-page .hero-pe {
        height: auto;
        padding: 100px 0 60px;
    }
    .pe-page .section-padding {
        padding: 40px 20px;
    }
}

/* =========================================
   Blog Page Styles
   ========================================= */

.blog-page {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.blog-page .section-padding {
    padding: 60px 20px;
}

.blog-page .hero-blog {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/blog-sugar-daddy-mentor-success-dating-sugar-baby-980x630.jpg') no-repeat center center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.blog-page .hero-content-blog {
    max-width: 800px;
    padding: 0 20px;
}

.blog-page .hero-content-blog h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog-page .hero-content-blog p {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Blog Grid */
.blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-page .blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-page .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-page .blog-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    min-height: 60px; /* Align titles */
}

.blog-page .blog-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-page .blog-img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: auto; /* Push image down if text is short */
}

.blog-page .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-page .blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-page .read-more {
    display: inline-block;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 10px;
}

.blog-page .read-more:hover {
    text-decoration: underline;
}

/* CTA */
.blog-page .cta-blog-box {
    background: #e91e63;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.blog-page .cta-blog-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-page .cta-blog-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.blog-page .cta-blog-actions .btn {
    background: #fff;
    color: #e91e63;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.blog-page .cta-blog-actions .btn:hover {
    background: #fce4ec;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page .hero-content-blog h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   Blog Detail Page Styles
   ========================================= */

.blog-detail-page {
    font-family: 'Georgia', 'Times New Roman', Times, serif; /* More editorial font */
    color: #333;
    line-height: 1.8;
    background-color: #fff;
}

.blog-detail-page .section-padding {
    padding: 60px 20px;
}

.blog-detail-hero {
    background-color: #f8f9fa;
    padding: 80px 0 40px;
    text-align: center;
    margin-top: 80px; /* Offset header */
    border-bottom: 1px solid #eee;
}

.blog-detail-hero h1 {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-hero .blog-meta {
    font-family: 'Segoe UI', sans-serif;
    color: #666;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.blog-content .featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-content .featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    color: #e91e63; /* Brand pink */
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 25px;
    color: #444;
}

.blog-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.blog-content ul li strong {
    color: #222;
}

/* Comparison Table */
.blog-content .table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.blog-content .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
}

.blog-content .comparison-table th,
.blog-content .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.blog-content .comparison-table th {
    background-color: #fce4ec;
    color: #c2185b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.blog-content .comparison-table tr:hover {
    background-color: #f9f9f9;
}

/* CTA inside blog */
.blog-content .blog-cta {
    background: #f0f4f8;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    border-left: 5px solid #e91e63;
}

.blog-content .blog-cta h3 {
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    margin-top: 0;
    margin-bottom: 15px;
}

.blog-content .blog-cta p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.blog-content .blog-cta .btn {
    background: #e91e63;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.blog-content .blog-cta .btn:hover {
    background: #c2185b;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-hero h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        font-size: 1.05rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Fixes and Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 20px;
    /* border: 1px solid #eee; Optional */
}

@media (max-width: 768px) {
    /* Fix Hero Sections Obscuration */
    .hero,
    .sugar-boy-page .hero-sb,
    .ae-page .hero-ae,
    .za-page .hero-za,
    .gh-page .hero-gh,
    .lesbian-page .hero-les {
        height: auto !important;
        min-height: auto !important;
        padding-top: 140px !important; /* Ensure content clears fixed header */
        padding-bottom: 60px !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content,
    .sugar-boy-page .hero-content-sb,
    .ae-page .hero-content-ae,
    .za-page .hero-content-za,
    .gh-page .hero-content-gh,
    .lesbian-page .hero-content-les {
        padding: 0 20px !important;
        max-width: 100% !important;
        margin-top: 20px; /* Extra space from top if needed */
    }

    .hero-content h1,
    .sugar-boy-page .hero-content-sb h1,
    .ae-page .hero-content-ae h1,
    .za-page .hero-content-za h1,
    .gh-page .hero-content-gh h1,
    .lesbian-page .hero-content-les h1 {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    /* Ensure buttons don't overlap */
    .hero-btns,
    .hero-btns-sb,
    .hero-ae-btns,
    .hero-za-btns,
    .gh-page .hero-gh-btns {
        margin-top: 30px;
        position: relative; /* Ensure z-index works if needed */
        z-index: 5;
    }
    
    .gh-page .hero-gh-btns .btn {
        white-space: normal; /* Allow button text to wrap */
        height: auto;
        padding: 15px 20px; /* Adjust padding if needed */
        margin: 0;
        width: 100%; /* Full width on mobile looks better usually */
        display: block;
        max-width: 300px; /* Prevent it from being too wide */
        margin-left: auto;
        margin-right: auto;
    }

    /* Fix Featured Members Grid on Mobile */
    .members-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix TR page stats grid on mobile */
    .tr-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .tr-stat-box {
        min-height: auto;
        padding: 15px;
    }

    /* Fix TR page steps list on mobile */
    .steps-tr-list {
        display: flex;
        flex-direction: column;
    }
    
    .steps-tr-list .step-item {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Force Table Responsive behavior */
    .table-responsive {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table-sb, 
    .comparison-table {
        width: 100% !important;
        min-width: 600px !important; /* Force table to be wide enough to scroll */
    }
}
