:root {
    --primary-color: #1A74CE; /* Exact Logo blue */
    --primary-hover: #1560ab;
    --text-dark: #0b1928; /* very dark blue/black for headings */
    --text-body: #475569; /* slate gray readable text */
    --bg-hero: #eefcf6; /* light minty background for inner headers */
    --bg-footer: #f8f9fa; /* light gray footer */
    --whatsapp-color: #25D366;
}

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

body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.2s ease;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px; /* Slightly thicker to ensure the graphics don't get chopped */
}

.logo {
    display: block;
    width: 220px; 
    height: 75px; /* Match header height */
    display: flex;
    align-items: center;
    overflow: hidden; /* THIS IS THE FIX: Clips the ugly white box perfectly */
}

.logo img {
    height: 75px;
    width: 75px;
    display: block;
    transform: scale(2.3); /* Zooms enough to read clearly, not enough to get chopped by overflow */
    transform-origin: left center;
    mix-blend-mode: multiply; /* Blends any off-white JPEG artifacting into the pure white header */
}

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

.nav a {
    color: var(--text-body);
    font-size: 15px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Base button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
    border: 2px solid transparent;
}

.btn-outline-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-outline-primary:hover {
    border-color: var(--primary-color);
    color: var(--primary-hover);
    box-shadow: 0 4px 6px rgba(33, 118, 213, 0.15);
}

/* Main Content Area */
.main-content {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 140px;
    background-image: url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=1920&q=85');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 15, 35, 0.80) 0%,
        rgba(10, 30, 60, 0.65) 60%,
        rgba(0, 80, 120, 0.45) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 650px;
}

.hero h1 {
    font-size: 56px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.hero-bullets li i {
    color: var(--primary-color);
    background: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Inner Pages Header */
.page-header {
    background-color: var(--bg-hero);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: var(--text-dark);
}

/* Text Content pages (Terms, Privacy, Refund) */
.text-content-section {
    padding: 60px 0;
}

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

.text-content-inner h2 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

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

.text-content-inner ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content-inner li {
    margin-bottom: 8px;
}

/* FAQ Layout */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category-title {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.accordion-header .icon {
    font-size: 24px;
    color: var(--text-body);
    transition: transform 0.3s;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.accordion-body-inner {
    padding-bottom: 20px;
    color: var(--text-body);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Footer layout */
.footer {
    background-color: var(--bg-footer);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 40px;
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: var(--text-body);
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 14px;
}

/* Floating WhatsApp Default */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Utility */
.d-flex { display: flex; gap: 10px; flex-wrap: wrap;}

@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 18px; }
    
    .nav.desktop-only { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-top: 1px solid #e8edf2;
        gap: 20px;
    }
    
    .nav.desktop-only.active { 
        display: flex; 
    }
    
    .mobile-menu-btn { display: block; }
    .footer-grid { flex-direction: column; gap: 40px; text-align: center; }
}
