/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-blue: #00C2FF;
    --dark-bg: #0b1120;
    --text-grey: #a0aec0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f6f8;
    color: #333;
}

/* =========================================
   2. NAVBAR & DESKTOP MENU
   ========================================= */
.navbar {
    background: var(--dark-bg);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f2937;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.burger {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Hidden on desktop */

/* --- MODERN DESKTOP MENU STYLES --- */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        padding: 5px 0;
        position: relative;
    }

    /* Desktop Hover Glow */
    .nav-links a:hover {
        color: var(--primary-blue);
        text-shadow: 0 0 10px rgba(0, 194, 255, 0.6);
    }

    /* Desktop Animated Underline */
    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-blue);
        transition: width 0.3s ease-in-out;
    }

    .nav-links a:hover::after {
        width: 100%;
    }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background-color: var(--dark-bg);
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.hero-container {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Badges */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.hero-badge {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(0, 194, 255, 0.05);
}

.hero-subtext {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-text {
    color: #2ecc71;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cyan {
    background-color: var(--primary-blue);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
    display: inline-block;
    /* Fix for buttons */
}

.btn-cyan:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* =========================================
   4. PRODUCTS SECTION
   ========================================= */
.section-light {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-bg);
    font-weight: 800;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #ddd;
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.product-card:hover .card-photo {
    transform: scale(1.1);
}

.product-card h3 {
    margin-bottom: 5px;
    color: #222;
    font-size: 1.2rem;
}

.product-card p {
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   5. TRC LABS SECTION (Grid Layout)
   ========================================= */
.section-dark {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.new-tag {
    background: #ff3b30;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

/* Grid Container for Side-by-Side Boxes */
.labs-grid-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.labs-offer-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #222;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #444;
    text-align: left;
    /* Better readability */
}

/* Center content inside the box */
.labs-content {
    text-align: center;
}

.highlighted-box {
    border: 1px solid #00bcd4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
}

.price {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 10px 0;
}

.check-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    color: #ccc;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list li::before {
    content: "✓";
    color: var(--primary-blue);
    margin-right: 10px;
}

/* =========================================
   6. WHY CHOOSE US SECTION
   ========================================= */
.why-us-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #333;
}

/* =========================================
   7. CALCULATOR PAGE STYLES
   ========================================= */
.calc-page {
    background-color: var(--dark-bg);
    min-height: 100vh;
}

.calculator-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.calculator-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: auto;
    border-top: 5px solid var(--primary-blue);
}

.calculator-card h2 {
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 10px;
}

.calc-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.input-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 194, 255, 0.2);
}

.error-text {
    color: red;
    display: none;
    margin-top: 5px;
}

.full-width {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

/* Results */
.results-area {
    display: none;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-area h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--dark-bg);
    color: var(--primary-blue);
    font-weight: 600;
}

.amount-col {
    color: var(--primary-blue);
    font-weight: bold;
}

.highlight-row {
    background-color: #f0fbff;
    border-left: 4px solid var(--primary-blue);
}

.text-muted {
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
}

.calc-contact {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.calc-contact p {
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}

/* Active Nav Link for Calculator */
.active-link {
    color: var(--primary-blue) !important;
}

/* =========================================
   8. PREMIUM FOOTER (NEW)
   ========================================= */
.premium-footer {
    background-color: var(--dark-bg);
    color: #a0aec0; /* Soft Grey Text */
    border-top: 4px solid var(--primary-blue);
    padding-top: 60px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

/* Column Styling */
.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-col ul li a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-blue);
}

/* Contact Info Highlight */
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-row i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Call to Action Buttons */
.footer-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-call {
    background-color: var(--primary-blue);
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
}

/* Social Media Grid */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Specific Brand Colors on Hover */
.social-btn.fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-3px); }
.social-btn.yt:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-3px); }
.social-btn.tt:hover { background: #000000; border-color: #eee; transform: translateY(-3px); box-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* Copyright Bar */
.footer-bottom {
    background-color: #050911; /* Even Darker */
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-row {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* =========================================
   9. MOBILE STYLES (Glassmorphism Menu)
   ========================================= */
@media screen and (max-width: 768px) {

    /* Reveal Burger Icon on Mobile */
    .burger {
        display: block;
    }

    body {
        overflow-x: hidden;
    }

    /* 1. Glass Drawer Design */
    .nav-links {
        display: flex;
        /* Override display:none */
        position: fixed;
        right: 0px;
        top: 70px;
        height: 100vh;
        /* Modern Semi-Transparent Dark Background */
        background: rgba(11, 17, 32, 0.95);
        /* The Blur Effect (Glassmorphism) */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: center;
        width: 65%;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 60px;
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* 2. Mobile Link Styling */
    .nav-links li {
        list-style: none;
        margin: 20px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        animation: fadeLinks 0.5s ease forwards 0.3s;
    }

    .nav-links a {
        color: white !important;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 10px 20px;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    /* 3. Mobile Hover/Touch Effect */
    .nav-links a:hover,
    .nav-links a:active {
        color: var(--dark-bg) !important;
        background-color: var(--primary-blue);
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 194, 255, 0.6);
    }

    /* 4. Active State (Show Menu) */
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    /* 5. Mobile Layout Adjustments for Sections */
    .labs-grid-container {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Animations */
    @keyframes fadeLinks {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* =========================================
   NEW: MARQUEE & CHECKLIST STYLES
   ========================================= */

/* --- 1. MOVING BRAND TICKER --- */
.brand-ticker-wrap {
    background: var(--dark-bg);
    color: white;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--primary-blue);
    overflow: hidden;
    /* Hides text that goes outside */
    height: 60px;
}

.ticker-heading {
    background: var(--primary-blue);
    color: var(--dark-bg);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    z-index: 2;
    /* Keeps it on top */
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    /* ANIMATION SETTINGS */
    animation: scroll 30s linear infinite;
    /* 30s = Very Slow Speed */
    width: max-content;
    /* Allows track to be as long as needed */
}

/* The Moving Items */
.ticker-item {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 40px;
    /* Space between brand names */
    color: #ccc;
    letter-spacing: 1px;
}

.ticker-item:hover {
    color: white;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.8);
}

/* The Animation Logic */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves half way then loops */
}


/* --- 2. CHECKLIST SECTION (Questionnaire) --- */
.checklist-section {
    background-color: #f4f6f8;
    padding: 60px 20px;
}

.checklist-card {
    background: white;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-blue);
}

.checklist-card h3 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.check-item:hover {
    border-color: var(--primary-blue);
    background: #fff;
    transform: translateX(5px);
}

.check-item i {
    font-size: 24px;
    color: var(--primary-blue);
    width: 50px;
    text-align: center;
}

.check-text {
    flex: 1;
}

.check-text strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
}

.check-text p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

/* Green Checkbox Look */
.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2ecc71;
    cursor: default;
}

.checklist-action {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.checklist-action p {
    margin-bottom: 15px;
    font-weight: 600;
    color: #555;
}

/* Mobile Tweaks */
@media screen and (max-width: 768px) {
    .ticker-heading {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .ticker-item {
        margin: 0 20px;
        font-size: 1rem;
    }

    .checklist-card {
        padding: 20px;
    }
}
/* =========================================
   10. TERMS & CONDITIONS PAGE STYLES
   ========================================= */
.terms-page {
    background-color: #f4f6f8;
    min-height: 100vh;
    padding-bottom: 60px;
}

.terms-header {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary-blue);
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.terms-header p {
    color: var(--text-grey);
    font-size: 1.1rem;
}

.terms-container {
    max-width: 900px;
    margin: -40px auto 0; /* Pulls card up into header */
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.terms-content h2 {
    color: var(--dark-bg);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-blue);
    padding-left: 15px;
    font-size: 1.5rem;
}

.terms-content h3 {
    color: #444;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.terms-content p, .terms-content li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-content strong {
    color: var(--dark-bg);
}

/* Alert Boxes for Terms */
.term-alert {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    color: #c53030;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.term-info {
    background: #ebf8ff;
    border-left: 4px solid var(--primary-blue);
    color: #2c5282;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Terms */
@media (max-width: 768px) {
    .terms-container {
        margin: 0;
        border-radius: 0;
        padding: 20px;
    }
    .terms-header h1 {
        font-size: 2rem;
    }
}
/* =========================================
   11. PRIVACY POLICY PAGE STYLES
   ========================================= */
.privacy-page {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 60px;
}

.privacy-header {
    background-color: var(--dark-bg);
    background-image: linear-gradient(to bottom right, var(--dark-bg), #1a202c);
    color: white;
    padding: 70px 20px;
    text-align: center;
    border-bottom: 4px solid #10b981; /* Green accent for Privacy/Security */
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.privacy-header p {
    color: #e2e8f0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.privacy-container {
    max-width: 900px;
    margin: -50px auto 0;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.privacy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--dark-bg);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h2 i {
    color: #10b981; /* Green icon to match accent */
    font-size: 1.2rem;
}

.privacy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    margin-left: 10px;
}

.privacy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #475569;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.data-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-container {
        padding: 25px;
        margin-top: -30px;
        border-radius: 20px 20px 0 0;
    }
    .privacy-header {
        padding: 50px 20px 80px;
    }
}
/* ... keep your existing footer styles ... */

/* --- UPDATE THESE SPECIFIC STYLES FOR BUTTONS --- */

.footer-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* New Wrapper to put buttons side-by-side */
.cta-row {
    display: flex;
    gap: 10px; /* Space between Call and WhatsApp */
}

/* Shared Button Style */
.btn-cta {
    flex: 1; /* Makes both buttons equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.9rem;
}

.btn-cta i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Specific Colors */
.btn-call {
    background-color: var(--primary-blue);
    color: #000;
}

.btn-whatsapp {
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
}

/* Hover Effects */
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}