:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-join {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-join:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banner.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid var(--primary-color);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-img img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Glossary Grid */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.term-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.term-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    height: 250px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-img img {
    transform: scale(1.1);
}

.profile-info {
    padding: 15px;
}

.profile-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.profile-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.profile-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Page Content (About, Contact, Privacy, Terms) */
.page-content {
    padding: 60px 20px;
    max-width: 900px; /* Optimal reading width */
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* FAQ Styles */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-light);
}

/* About Page Specific Styles */
.about-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.about-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow);
    background: var(--white);
}

.about-table th, .about-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.about-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-table tr:hover {
    background-color: var(--bg-light);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.about-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-gallery img {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.about-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.about-gallery .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.about-list-check {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list-check li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list-check li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    color: var(--white) !important;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 30px;
    text-align: center !important;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .about-table {
        display: block;
        overflow-x: auto;
    }
}

/* Japan Page Specific Styles */
.jp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jp-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/japan.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
}

.jp-hero-content {
    max-width: 900px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

.jp-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

.jp-hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.6;
}

.jp-btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e91e63; /* Pinkish red for Japan theme */
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.jp-btn-hero:hover {
    background-color: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.jp-section {
    margin: 70px 0;
    overflow: hidden;
}

.jp-section-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.jp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e91e63;
}

.jp-subtitle {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 25px;
}

.jp-bg-light {
    background-color: #fcfcfc;
    padding: 70px 0;
    margin: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.jp-content-block p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.jp-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.jp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jp-img-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.jp-img-wrapper img:hover {
    transform: scale(1.02);
}

/* JP Cards Container */
.jp-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.jp-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #e91e63;
}

.jp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.jp-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.jp-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.jp-card p {
    color: #666;
    line-height: 1.6;
}

/* JP List */
.jp-list {
    list-style: none;
    padding: 0;
}

.jp-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.jp-list li:last-child {
    border-bottom: none;
}

.jp-list li::before {
    content: '🌸'; /* Cherry blossom bullet for Japan theme */
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1rem;
}

.jp-list li strong {
    color: #e91e63;
}

/* JP Grid 3 */
.jp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jp-img-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.jp-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.jp-img-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.jp-card-content {
    padding: 25px;
}

.jp-card-content h4 {
    color: #e91e63;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.jp-card-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* JP Table */
.jp-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.jp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.jp-table th {
    background: #333;
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.jp-table th:nth-child(2) {
    background: #e91e63; /* Highlight Japan column */
}

.jp-table th:nth-child(3) {
    background: #ff9800; /* Distinct color for India column */
}

.jp-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.jp-table tr:hover {
    background-color: #fff0f5; /* Light pink hover */
}

.jp-note {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
}

/* JP Check List */
.jp-list-check {
    list-style: none;
    padding: 0;
}

.jp-list-check li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.jp-list-check li::before {
    content: '✔';
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* JP Safety Box */
.jp-safety-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.jp-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.jp-safety-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.jp-safety-item:hover {
    border-color: #e91e63;
}

.jp-safety-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Blog Page Specific Styles */
.blog-page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemalegirls8.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
}

.blog-page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.blog-page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-page-breadcrumb {
    padding: 15px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Ensure blog grid is 3 columns on PC */
@media (min-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.jp-safety-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* JP CTA Section */
.jp-cta-section {
    background: linear-gradient(135deg, #333, #000);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 80px 0 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.jp-cta-section h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.8rem;
    border-bottom: none;
}

.jp-cta-section h2::after {
    display: none;
}

.jp-cta-section p {
    color: #ccc;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.jp-btn-large {
    display: inline-block;
    background: #e91e63;
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.jp-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.6);
    background: #d81b60;
}

/* Hot Shemale Blog Page Styles */
.hot-blog-breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #666;
}

.hot-blog-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.hot-blog-breadcrumb a:hover {
    text-decoration: underline;
}

.hot-blog-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.hot-blog-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.hot-blog-section {
    margin-bottom: 50px;
}

.hot-blog-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    line-height: 1.3;
}

.hot-blog-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.hot-blog-img-wrapper {
    margin: 40px 0;
    text-align: center;
}

.hot-blog-img-wrapper img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hot-blog-img-wrapper img:hover {
    transform: scale(1.02);
}

.hot-blog-list {
    list-style-type: none;
    margin: 20px 0;
}

.hot-blog-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.hot-blog-list li::before {
    content: '★';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.hot-blog-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.hot-blog-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.hot-blog-table th, .hot-blog-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.hot-blog-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hot-blog-table tr:last-child td {
    border-bottom: none;
}

.hot-blog-table tr:hover {
    background-color: #fafafa;
}

.hot-blog-cta {
    background: linear-gradient(135deg, #fce4ec, #fff);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f8bbd0;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.hot-blog-cta h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.hot-blog-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.hot-blog-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.hot-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.hot-blog-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
}

.hot-blog-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hot-blog-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hot-blog-title {
        font-size: 2.2rem;
    }
    .hot-blog-section h2 {
        font-size: 1.6rem;
    }
    .hot-blog-cta {
        padding: 30px 20px;
    }
    .hot-blog-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .jp-hero h1 {
        font-size: 2.2rem;
    }
    
    .jp-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .jp-section-title {
        font-size: 2rem;
    }
    
    .jp-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .jp-safety-grid {
        grid-template-columns: 1fr;
    }
    
    .jp-img-wrapper {
        margin-bottom: 20px;
    }
}


/* USA Page Specific Styles */
.usa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.usa-hero {
    position: relative;
    height: 600px;
    background: url('images/usa.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

/* Fallback if usa.jpg doesn't exist or for better visibility */
.usa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.usa-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.usa-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.usa-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.usa-btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: var(--transition);
}

.usa-btn-hero:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.usa-section {
    margin-bottom: 60px;
}

.usa-section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.usa-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.usa-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.usa-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.usa-content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.usa-bg-light {
    background-color: var(--bg-light);
    padding: 50px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.usa-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.usa-img-wrapper img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* City Grid */
.usa-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.usa-city-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.usa-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.usa-city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.usa-city-info {
    padding: 20px;
}

.usa-city-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.usa-city-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* List Styles */
.usa-list {
    list-style: none;
    margin-top: 20px;
}

.usa-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.usa-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Table Styles */
.usa-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.usa-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.usa-table th, .usa-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.usa-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.usa-table tr:hover {
    background-color: var(--bg-light);
}

/* Testimonials */
.usa-testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.usa-testimonial-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.usa-testimonial-card p {
    font-style: italic;
    color: var(--text-light);
}

/* FAQ */
.usa-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.usa-faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.usa-faq-question {
    padding: 20px;
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
}

.usa-faq-answer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

/* Safety Box */
.usa-safety-box {
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffe0b2;
}

.usa-safety-box p {
    margin-bottom: 15px;
}

.usa-safety-box strong {
    color: #e65100;
}

/* Gallery */
.usa-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.usa-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
}

.usa-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.usa-gallery-item:hover img {
    transform: scale(1.1);
}

.usa-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-weight: 600;
    text-align: center;
}


/* USA CTA Section */
.usa-cta-section {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 80px 0 50px;
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.3);
}

.usa-cta-section h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.8rem;
    border-bottom: none;
}

.usa-cta-section h2::after {
    display: none;
}

.usa-cta-section p {
    color: #e3f2fd;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.usa-btn-large {
    display: inline-block;
    background: #ffeb3b;
    color: #0d47a1;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.4);
}

.usa-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.6);
    background: #fdd835;
}

@media (max-width: 768px) {
    .usa-hero h1 {
        font-size: 2rem;
    }
    
    .usa-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .usa-section-title {
        font-size: 1.8rem;
    }
    
    .usa-city-grid {
        grid-template-columns: 1fr;
    }
    
    .usa-table-wrapper {
        margin: 20px 0;
    }
    
    .usa-cta-section {
        padding: 60px 20px;
        margin: 40px 0;
    }
    
    .usa-cta-section h2 {
        font-size: 2rem;
    }
    
    .usa-cta-section p {
        font-size: 1.1rem;
    }
    
    .usa-btn-large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

/* Hot Shemale Blog Page Styles */
.hot-body {
    background-color: #fff0f5;
}

.hot-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.hot-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemalegirls9.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.hot-hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    color: #fff;
}

.hot-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
}

.hot-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.hot-breadcrumb a:hover {
    text-decoration: underline;
}

.hot-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hot-section h2 {
    color: #e91e63;
    font-size: 2.2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #fce4ec;
    padding-bottom: 10px;
}

.hot-section h3 {
    color: #c2185b;
    font-size: 1.6rem;
    margin: 25px 0 15px;
}

.hot-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.hot-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.hot-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #444;
}

.hot-img-float-right {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hot-img-float-left {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hot-img-full {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hot-cta-box {
    background: linear-gradient(135deg, #ff4081, #c2185b);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
    margin-top: 50px;
}

.hot-cta-box h2 {
    color: white;
    border-bottom: none;
}

.hot-btn {
    display: inline-block;
    background: white;
    color: #e91e63;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: transform 0.3s;
}

.hot-btn:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #c2185b;
}

@media (max-width: 768px) {
    .hot-hero h1 { font-size: 2.5rem; }
    .hot-img-float-right, .hot-img-float-left {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
}

/* Beautiful Shemale Blog Page Styles */
.beautiful-body {
    background-color: #f0f4f8;
}

.beautiful-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.beautiful-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/shemalegirls6.jpg') no-repeat center center/cover;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.beautiful-hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    margin-bottom: 20px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.beautiful-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.beautiful-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.beautiful-breadcrumb a:hover {
    text-decoration: underline;
}

.beautiful-section {
    background: #fff;
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.beautiful-section h2 {
    color: #2c3e50;
    font-size: 2.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.beautiful-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.beautiful-section h3 {
    color: #8e44ad;
    font-size: 1.8rem;
    margin: 35px 0 20px;
}

.beautiful-section p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.beautiful-section ul, .beautiful-list {
    list-style: none;
    margin-bottom: 25px;
}

.beautiful-section ul li, .beautiful-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
    padding-left: 25px;
    position: relative;
}

.beautiful-section ul li::before, .beautiful-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.beautiful-list {
    counter-reset: beauty-counter;
}

.beautiful-list li {
    counter-increment: beauty-counter;
    padding-left: 35px;
}

.beautiful-list li::before {
    content: counter(beauty-counter) ".";
    font-size: 1.1rem;
    top: 0;
}

.beautiful-img-float-right {
    float: right;
    margin: 0 0 25px 35px;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.beautiful-img-float-left {
    float: left;
    margin: 0 35px 25px 0;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.beautiful-img-full {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.beautiful-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.beautiful-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.beautiful-card:hover {
    transform: translateY(-5px);
}

.beautiful-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.beautiful-card h3 {
    padding: 0 20px;
    margin-top: 20px;
    font-size: 1.5rem;
}

.beautiful-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
}

.beautiful-cta-box {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 60px;
    text-align: center;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.4);
}

.beautiful-cta-box h2 {
    color: white;
    border-bottom: none;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.beautiful-cta-box h2::after {
    display: none;
}

.beautiful-cta-box p {
    color: #f3e5f5;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.beautiful-btn {
    display: inline-block;
    background: #fff;
    color: #8e44ad;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.beautiful-btn:hover {
    transform: scale(1.05);
    background: #f3e5f5;
    color: #8e44ad;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .beautiful-hero h1 { font-size: 2.2rem; }
    .beautiful-img-float-right, .beautiful-img-float-left {
        float: none;
        width: 100%;
        margin: 20px 0;
        max-width: 100%;
    }
    .beautiful-section {
        padding: 30px 20px;
    }
    .beautiful-section h2 {
        font-size: 2rem;
    }
    .beautiful-cta-box {
        padding: 40px 20px;
    }
    .beautiful-cta-box h2 {
        font-size: 2rem;
    }
}

/* Shemale Dating Terms Page Styles */
.terms-body {
    background-color: #fdfdfd;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.terms-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemaledating5.jpg') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.terms-hero-content {
    max-width: 800px;
    padding: 20px;
}

.terms-hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.terms-breadcrumb {
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: #666;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
}

.terms-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.terms-breadcrumb a:hover {
    text-decoration: underline;
}

.terms-section {
    margin-bottom: 60px;
    line-height: 1.8;
    color: #444;
}

.terms-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.terms-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.terms-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

/* Images */
.terms-img-float-right {
    float: right;
    width: 40%;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-img-float-left {
    float: left;
    width: 40%;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-img-full {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Glossary Styles */
.terms-glossary dl {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.terms-glossary dt {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 20px;
}

.terms-glossary dt:first-child {
    margin-top: 0;
}

.terms-glossary dd {
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
    padding-left: 15px;
    border-left: 2px solid #eee;
}

/* Grid & Cards */
.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.terms-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.terms-card:hover {
    transform: translateY(-5px);
}

.terms-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.terms-card h3 {
    padding: 0 20px;
    margin-top: 20px;
}

.terms-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
}

/* List */
.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.terms-list li strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* CTA */
.terms-cta-box {
    background: #333;
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    margin-top: 60px;
}

.terms-cta-box h2 {
    color: white;
    border-bottom: none;
    font-size: 2.5rem;
}

.terms-cta-box h2::after {
    display: none;
}

.terms-cta-box p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.terms-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.terms-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-hero h1 { font-size: 2rem; }
    .terms-img-float-right, .terms-img-float-left {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    .terms-grid {
        grid-template-columns: 1fr;
    }
}
.uk-container {
    max-width: 1400px; /* Wider container for UK page */
    margin: 0 auto;
    padding: 0 20px;
}

.uk-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/uk60825-680x407.jpg') no-repeat center center/cover;
    height: 600px; /* Increased height for better impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.uk-hero-content {
    max-width: 1000px; /* Wider content area in hero */
    padding: 20px;
}

.uk-hero h1 {
    font-size: 3.5rem; /* Larger title */
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.uk-hero p {
    font-size: 1.4rem; /* Larger text */
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.8;
}

.uk-section {
    margin: 60px 0; /* More spacing between sections */
    overflow: hidden;
}

.uk-text-full {
    background: var(--bg-light);
    padding: 40px; /* More padding */
    border-radius: 15px;
    border-left: 6px solid var(--primary-color);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.uk-text-full h2, .uk-text-full h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.uk-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns on PC */
    gap: 30px;
    margin: 40px 0;
}

.uk-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.uk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.uk-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.uk-img-left {
    float: left;
    width: 45%; /* Slightly wider image area */
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.uk-img-right {
    float: right;
    width: 45%; /* Slightly wider image area */
    margin-left: 40px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.uk-text-right, .uk-text-left {
    overflow: hidden;
    font-size: 1.1rem; /* Better readability */
    line-height: 1.8;
}

/* Optimized UK Table */
.uk-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.uk-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.uk-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
    font-size: 1.05rem;
}

.uk-table tr:last-child td {
    border-bottom: none;
}

.uk-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.uk-table tr:hover {
    background-color: #f1f1f1;
}

/* UK Page Content Typography */
.uk-page-content {
    padding: 40px 0;
}

.uk-page-content > h2 {
    font-size: 2.2rem;
    margin: 60px 0 30px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.uk-page-content > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.uk-page-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* UK CTA Section */
.uk-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    border-radius: 15px;
    margin: 60px 0 40px;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.uk-cta-section h2 {
    color: var(--white) !important;
    border-bottom: none !important;
    margin-top: 0 !important;
    font-size: 2.5rem !important;
}

.uk-cta-section h2::after {
    display: none;
}

.uk-cta-section p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.2rem !important;
    max-width: 800px;
    margin: 0 auto 30px !important;
}

.uk-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.uk-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: var(--secondary-color);
}

.uk-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for wider screens */
    gap: 30px;
    margin: 50px 0;
}

.uk-city-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.uk-city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.uk-city-card img {
    width: 100%;
    height: 250px; /* Taller images */
    object-fit: cover;
}

.uk-city-card .city-info {
    padding: 25px;
    flex-grow: 1;
}

.uk-city-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* FAQ Styles */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: var(--white);
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    background: #f9f9f9;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

@media (max-width: 1024px) {
    .uk-container {
        max-width: 95%;
    }
    .uk-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .uk-hero h1 {
        font-size: 2.2rem;
    }
    .uk-hero p {
        font-size: 1.1rem;
    }
    .uk-img-left, .uk-img-right {
        float: none;
        width: 100%;
        margin: 0 0 30px 0;
    }
    .uk-grid-2 {
        grid-template-columns: 1fr;
    }
    .uk-city-grid {
        grid-template-columns: 1fr;
    }
    .uk-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Restored Styles for Index Sections */

/* Popular Countries */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-card h3 {
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.location-card p {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Membership Plans */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-card .plan-duration {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card ul {
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Index Page Improvements */
.home-faq {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.home-faq .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.home-faq .faq-item {
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Popular Countries - 3 per row on PC */
@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Real Member Experiences Optimization */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-card p:last-child {
    font-style: normal;
    color: var(--text-color);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

/* Australia Page Scoped Styles */
.au-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/banner.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.au-hero-content {
    max-width: 800px;
    padding: 20px;
}

.au-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.au-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.au-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.au-btn-hero:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.au-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.au-section {
    margin-bottom: 60px;
}

.au-section-title {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.au-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.au-content-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.au-content-block p {
    margin-bottom: 20px;
}

.au-grid-2, .au-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .au-grid-2, .au-grid-2-reverse {
        grid-template-columns: 1fr;
    }
    .au-grid-2-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

.au-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.au-float-right {
    float: right;
    margin: 0 0 20px 30px;
    width: 40%;
}

.au-float-left {
    float: left;
    margin: 0 30px 20px 0;
    width: 40%;
}

@media (max-width: 768px) {
    .au-float-right, .au-float-left {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.au-float-right img, .au-float-left img {
    width: 100%;
    border-radius: 10px;
}

.au-bg-light {
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.au-list {
    list-style: none;
    padding: 0;
}

.au-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.au-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.au-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.au-city-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.au-city-card:hover {
    transform: translateY(-5px);
}

.au-city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.au-city-info {
    padding: 20px;
}

.au-city-info h3 {
    margin: 0 0 10px;
    color: var(--text-color);
}

.au-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 20px;
    border-radius: 20px;
    color: var(--white);
    margin-top: 50px;
}

.au-cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.au-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 30px;
    transition: var(--transition);
}

.au-btn-large:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Canada Page Scoped Styles */
.ca-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/ca.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
}

.ca-hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.ca-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ca-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ca-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ca-btn-hero:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.ca-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ca-section {
    margin-bottom: 60px;
}

.ca-section-title {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.ca-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.ca-content-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.ca-content-block p {
    margin-bottom: 20px;
}

.ca-grid-2, .ca-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .ca-grid-2, .ca-grid-2-reverse {
        grid-template-columns: 1fr;
    }
    .ca-grid-2-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

.ca-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.ca-float-right {
    float: right;
    margin: 0 0 20px 30px;
    width: 40%;
}

.ca-float-left {
    float: left;
    margin: 0 30px 20px 0;
    width: 40%;
}

@media (max-width: 768px) {
    .ca-float-right, .ca-float-left {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.ca-float-right img, .ca-float-left img {
    width: 100%;
    border-radius: 10px;
}

.ca-bg-light {
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.ca-list {
    list-style: none;
    padding: 0;
}

.ca-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.ca-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ca-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .ca-city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ca-city-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ca-city-card:hover {
    transform: translateY(-5px);
}

.ca-city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ca-city-info {
    padding: 20px;
}

.ca-city-info h3 {
    margin: 0 0 10px;
    color: var(--text-color);
}

.ca-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 20px;
    border-radius: 20px;
    color: var(--white);
    margin-top: 50px;
}

.ca-cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.ca-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 30px;
    transition: var(--transition);
}

.ca-btn-large:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Germany Page Scoped Styles */
.de-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/de.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
}

.de-hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.de-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.de-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.de-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.de-btn-hero:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.de-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.de-section {
    margin-bottom: 60px;
}

.de-section-title {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.de-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.de-content-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.de-content-block p {
    margin-bottom: 20px;
}

.de-grid-2, .de-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .de-grid-2, .de-grid-2-reverse {
        grid-template-columns: 1fr;
    }
    .de-grid-2-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

.de-img-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.de-bg-light {
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.de-list {
    list-style: none;
    padding: 0;
}

.de-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.de-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.de-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.de-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.de-card:hover {
    transform: translateY(-5px);
}

.de-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.de-text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.de-club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .de-club-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.de-club-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
}

.de-club-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.de-club-card h3 {
    color: var(--text-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.de-club-info {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
}

.de-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.de-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 20px;
    border-radius: 20px;
    color: var(--white);
    margin-top: 50px;
    margin-bottom: 50px;
}

.de-cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.de-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 30px;
    transition: var(--transition);
}

.de-btn-large:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Spain Page Styles */
.es-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('images/es.jpg') no-repeat center center/cover;
}

.es-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.es-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.es-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.es-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.es-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.es-btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.es-section {
    padding: 80px 0;
}

.es-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.es-bg-light {
    background-color: #f9f9f9;
}

.es-section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: bold;
}

.es-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.es-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .es-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .es-grid-2-reverse {
        grid-template-columns: 1fr 1fr;
    }
}

.es-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.es-content-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #444;
}

.es-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.es-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.es-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.es-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.es-card p {
    color: #666;
    line-height: 1.6;
}

.es-list {
    list-style: none;
    padding: 0;
}

.es-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.es-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.es-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/es.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.es-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.es-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.es-btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.es-btn-large:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* India Page Styles */
.in-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('images/india.jpg') no-repeat center center/cover;
}

.in-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.in-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.in-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.in-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.in-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.in-btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.in-section {
    padding: 80px 0;
}

.in-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.in-bg-light {
    background-color: #fff5f5; /* Slight reddish tint for India theme */
}

.in-section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: bold;
}

.in-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.in-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .in-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .in-grid-2-reverse {
        grid-template-columns: 1fr 1fr;
    }
}

.in-content-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #444;
}

.in-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.in-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.in-step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.in-step-card:hover {
    transform: translateY(-5px);
}

.in-step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.in-list {
    list-style: none;
    padding: 0;
}

.in-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.in-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.in-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .in-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-city-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.in-city-card:hover {
    transform: translateY(-5px);
}

.in-city-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.in-city-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.in-city-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.5;
}

.in-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.in-faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: var(--transition);
}

.in-faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0;
    position: relative;
    padding-right: 30px;
}

.in-faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.in-faq-item.active h3::after {
    content: '-';
}

.in-faq-item p {
    display: none;
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

.in-faq-item.active p {
    display: block;
}

.in-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/mumbai.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.in-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.in-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.in-btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.in-btn-large:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* France Page Styles */
.fr-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('images/shemaledating5.jpg') no-repeat center center/cover;
}

.fr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.fr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.fr-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Playfair Display', serif; /* Elegant font stack if available, else fallback */
}

.fr-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.fr-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 5px; /* More chic/sharp look */
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fr-btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.fr-section {
    padding: 90px 0;
}

.fr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fr-bg-light {
    background-color: #f8f9fa;
}

.fr-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: bold;
}

.fr-section-title p {
    font-size: 1.1rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

.fr-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.fr-grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 900px) {
    .fr-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .fr-grid-2-reverse {
        grid-template-columns: 1fr 1fr;
    }
}

.fr-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fr-content-block p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.15rem;
    color: #333;
}

.fr-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fr-city-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.fr-city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fr-city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fr-city-card h3 {
    padding: 20px 20px 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.fr-city-card p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.fr-bar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.fr-bar-card:hover {
    transform: translateX(5px);
}

.fr-bar-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.fr-list {
    list-style: none;
    padding: 0;
}

.fr-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.fr-list li::before {
    content: "♥";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.fr-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.fr-faq-item {
    background: var(--white);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #eee;
}

.fr-faq-item:hover {
    border-color: var(--primary-color);
}

.fr-faq-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0;
    position: relative;
    padding-right: 30px;
}

.fr-faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.fr-faq-item.active h3::after {
    content: '-';
}

.fr-faq-item p {
    display: none;
    margin-top: 20px;
    color: #555;
    line-height: 1.7;
}

.fr-faq-item.active p {
    display: block;
}

.fr-cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemalegirls9.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.fr-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.fr-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fr-btn-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 60px;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fr-btn-large:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* App Page Specific Styles */
.app-page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/shemalegirls4.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.app-hero-content {
    max-width: 800px;
    padding: 20px;
}

.app-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.app-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.app-btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.app-btn-hero:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.app-breadcrumb {
    padding: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.app-breadcrumb a {
    color: var(--text-light);
}

.app-breadcrumb a:hover {
    color: var(--primary-color);
}

.app-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.app-intro h2, .app-intro h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.app-intro h2 {
    font-size: 2.2rem;
    text-align: center;
}

.app-intro p {
    margin-bottom: 20px;
}

.app-image-block {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.app-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.app-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.app-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.app-feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.app-feature-card:hover {
    transform: translateY(-5px);
}

.app-feature-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.app-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.app-download-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .app-download-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

.app-download-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.app-steps-list {
    margin-top: 30px;
}

.app-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(233, 30, 99, 0.2);
    line-height: 1;
}

.step-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.app-download-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-premium-section {
    margin-bottom: 80px;
    text-align: center;
}

.app-premium-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.app-premium-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.app-premium-table th, .app-premium-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.app-premium-table th {
    background: #333;
    color: var(--white);
    font-size: 1.1rem;
}

.app-premium-table th:nth-child(3) {
    background: var(--primary-color);
}

.app-premium-table tr:last-child td {
    border-bottom: none;
}

.app-premium-table tr:hover {
    background: var(--bg-light);
}

.check {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.cross {
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
}

.app-content-block {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.app-content-block h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.app-content-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.app-content-block li {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.app-conclusion {
    text-align: center;
    background: linear-gradient(135deg, #333, #555);
    color: var(--white);
    padding: 80px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.app-conclusion h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-conclusion p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.app-conclusion .app-btn-hero {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.app-conclusion .app-btn-hero:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.app-faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.app-faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.app-faq-item {
    background: var(--white);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.app-faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.app-faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

