/* --- VARIABLES & RESET --- */
:root {
    --primary-blue: #2563EB; /* Royal Blue */
    --primary-cyan: #06B6D4; /* Cyan */
    --accent-gold: #F59E0B; /* Best Value Badge */
    --dark-bg: #111827; /* Charcoal/Black */
    --light-bg: #F3F4F6; /* Light Grey */
    --white: #FFFFFF;
    --text-main: #374151;
    --text-light: #9CA3AF;
    --border-radius: 8px;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-center { text-align: center; }
.section-title { font-size: 2.1rem; color: var(--dark-bg); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.1rem; color: #6B7280; margin-bottom: 3rem; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}
.btn-outline:hover { background: var(--primary-blue); color: var(--white); }

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.5rem; color: var(--dark-bg); }
.logo img { height: 40px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-main); }
.nav-links a:hover { color: var(--primary-blue); }

.nav-buttons { display: flex; gap: 1rem; align-items: center; }
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; }

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 998;
    display: none;
}
.mobile-menu {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
    background: var(--white); z-index: 999;
    padding: 2rem; transition: 0.3s;
    display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-menu.active { left: 0; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; }

/* --- HERO SECTION --- */
.hero {
    max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-content h1 { font-size: 2.7rem; margin-bottom: 1.5rem; color: var(--dark-bg); }
.hero-content p { font-size: 1.1rem; color: #4B5563; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-image {
    background: var(--light-bg); padding: 1rem; border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.hero-image:hover::before {
    opacity: 1;
}
.hero-image img { 
    width: 100%; 
    border-radius: 6px;
    position: relative;
    z-index: 2;
}
.hero-caption { text-align: center; font-size: 0.85rem; margin-top: 0.5rem; color: #9CA3AF; }

/* --- FEATURES SECTION --- */
.features { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
    padding: 2rem; border: 1px solid #E5E7EB; border-radius: var(--border-radius);
    transition: var(--transition);
}
.feature-card:hover { border-color: var(--primary-cyan); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.feature-icon { font-size: 2rem; color: var(--primary-blue); margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

/* --- WHY CHOOSE SECTION --- */
.why-choose {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}
.why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0) 70%);
    border-radius: 50%;
}
.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.why-choose-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

/* --- PRICING SECTION (DARK) --- */
.pricing { background: var(--dark-bg); padding: 5rem 1.5rem; color: var(--white); }
.pricing .section-title { color: var(--white); }
.pricing .section-subtitle { color: #9CA3AF; }

.pricing-toggle {
    display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 3rem;
}
.switch { position: relative; display: inline-block; width: 60px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #374151; transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 22px; width: 22px;
    left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary-blue); }
input:checked + .slider:before { transform: translateX(30px); }
.toggle-label { font-weight: 600; font-size: 1.1rem; }
.toggle-label.active { color: var(--primary-cyan); }

.pricing-container {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.pricing-card {
    background: #1F2937; padding: 2.5rem; border-radius: 12px;
    border: 1px solid #374151; position: relative;
    display: flex; flex-direction: column;
}
.pricing-card.highlight { border-color: var(--primary-blue); box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
.best-value {
    position: absolute; top: -12px; right: 20px;
    background: var(--accent-gold); color: #000;
    font-size: 0.75rem; font-weight: 800; padding: 4px 8px; border-radius: 4px;
    display: none; /* Hidden by default */
}
.price-tag { font-size: 2.5rem; font-weight: 800; margin: 1rem 0 0.5rem; }
.price-period { color: #9CA3AF; font-size: 0.9rem; margin-bottom: 2rem; }
.pricing-features li { margin-bottom: 0.8rem; display: flex; gap: 10px; align-items: center; }
.pricing-features i { color: var(--primary-cyan); }
.not-included { color: #6B7280; text-decoration: line-through; }

/* --- FEATURES IN PRICING --- */
.pricing-features-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* --- FAQ & CONTACT MINI --- */
.faq { max-width: 800px; margin: 0 auto; padding: 5rem 1.5rem; }
.accordion-item { border-bottom: 1px solid #E5E7EB; padding: 1rem 0; }
.accordion-header { 
    cursor: pointer; 
    font-weight: 600; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0.5rem 0;
}
.accordion-body { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
    color: #4B5563; 
}
.accordion-item.active .accordion-body { 
    max-height: 200px; 
    padding-top: 0.5rem;
}
.accordion-item.active .accordion-header { color: var(--primary-blue); }
.accordion-item.active .ph-caret-down {
    transform: rotate(180deg);
}
.ph-caret-down {
    transition: transform 0.3s ease;
}

/* --- ABOUT PAGE STYLES --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    padding: 6rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"></polygon></svg>');
    background-size: cover;
}
.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}
.about-text p {
    margin-bottom: 1.5rem;
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.7;
}
.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.about-image:hover {
    transform: translateY(-5px);
}

.mission-values {
    background: var(--light-bg);
    padding: 5rem 1.5rem;
}
.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}
.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.team {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.team-member {
    text-align: center;
}
.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.team-member h3 {
    margin-bottom: 0.5rem;
}
.team-member p {
    color: #6B7280;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1F2937 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: white;
}
.cta-container {
    max-width: 800px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- CONTACT PAGE STYLES --- */
.contact-section {
    padding: 5rem 1.5rem;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.contact-info > p {
    color: #6B7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.contact-details p {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #6B7280;
    font-size: 0.9rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.faq-mini {
    padding: 4rem 1.5rem;
    background: white;
}

.faq-mini-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faq-mini-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.faq-mini-container > p {
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.faq-mini-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.faq-mini-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-mini-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-mini-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.faq-mini-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* --- LEGAL PAGES STYLES --- */
.legal-content {
    padding: 4rem 1.5rem;
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-blue);
}

.legal-header p {
    margin-bottom: 0.5rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4B5563;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4B5563;
}

.legal-subsection {
    margin-bottom: 2rem;
}

.legal-subsection h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.warning-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.warning-box i {
    color: #DC2626;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-box h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.final-note {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.final-note h3 {
    color: white;
    margin-bottom: 1rem;
}

.final-note p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* --- FOOTER --- */
footer { background: #0F1115; color: #9CA3AF; padding: 4rem 1.5rem 1rem; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    padding-bottom: 3rem; border-bottom: 1px solid #1F2937;
}
.footer-col h4 { color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a:hover { color: var(--primary-cyan); }
.footer-bottom {
    max-width: 1200px; margin: 1.5rem auto 0;
    display: flex; justify-content: space-between; font-size: 0.9rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .hamburger { display: block; }
    .hero { grid-template-columns: 1fr; text-align: center; }

    /* 👉 Hero heading mobile adjustment */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    /* 👉 Add these font size adjustments for all other sections */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Feature cards */
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Why choose section */
    .why-choose-card h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing cards */
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    /* Pricing toggle labels */
    .toggle-label {
        font-size: 1rem;
    }
    
    /* Pricing price tag */
    .price-tag {
        font-size: 2rem;
    }
    
    /* FAQ accordion headers */
    .accordion-header {
        font-size: 1.1rem;
    }
    
    /* About page headings */
    .page-hero h1 { 
        font-size: 2.2rem; 
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    /* Contact page heading */
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    /* FAQ mini heading */
    .faq-mini-container h2 {
        font-size: 1.8rem;
    }
    
    /* CTA section heading */
    .cta-section h2 {
        font-size: 2rem;
    }
    
    /* Legal pages headings */
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    /* 👉 Fix for About page grid layout issue */
    .about-grid,
    .about-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* 👉 Reverse order for second grid on mobile */
    .about-content .about-grid:nth-child(2) {
        display: flex;
        flex-direction: column;
    }
    
    .about-content .about-grid:nth-child(2) .about-image {
        order: -1; /* Move image to top on mobile */
    }
    
    .hero-buttons { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 0.5rem; }
    .pricing-features-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .mission-cards { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-method { flex-direction: column; text-align: center; }
    .contact-icon { margin: 0 auto 1rem; }
    .faq-mini-grid { grid-template-columns: 1fr; }
    .social-icons { justify-content: center; }
    .warning-box, .info-box { flex-direction: column; text-align: center; }
}


/* Tooltip styling */
.tooltip {
  position: relative;
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: 5px;
  color: #00bcd4; /* cyan accent */
}

.tooltip-text {
  visibility: hidden;
  width: 200px;
  background: #111;
  color: #fff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
