/* ============================================
   MAIN STYLESHEET - DStv-Style Streaming Site
   ============================================ */

/* ============================================
   COLOR SCHEME VARIABLES
   ============================================ */
:root {
    /* Backgrounds */
    --primary-dark: #060C1A;        /* Page background - much deeper/darker */
    --secondary-dark: #080F1E;      /* Section rows */
    --card-bg: #0A1628;             /* Cards background */
    --card-hover: #0D1F3C;          /* Hover/elevated cards */
    --border-color: #1A3A6B;        /* Borders */

    /* Primary Accent - Electric Blue */
    --accent-color: #1A6FD4;        /* Buttons */
    --accent-hover: #0E4FA3;        /* Button hover */
    --accent-light: #3B9EFF;        /* Links/logo/highlights */
    --badge-bg: rgba(26, 111, 212, 0.13);  /* Badge backgrounds (#1A6FD422) */

    /* Secondary Accent - Teal (Distinct from DStv) */
    --teal-main: #0D9488;           /* Main teal */
    --teal-bright: #2DD4BF;         /* Bright/text teal */
    --teal-bg: rgba(13, 122, 106, 0.13);   /* Chip backgrounds (#0D7A6A22) */

    /* Text Colors */
    --text-white: #FFFFFF;          /* Headings */
    --text-body: #CBD5E1;           /* Body text */
    --text-muted: #6B8BAE;          /* Muted/nav text */

    /* Utility/Support Colors */
    --success-color: #0D9488;       /* Using teal for success */
    --warning-color: #ffa726;
    --error-color: #ef5350;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   PLACEHOLDER STYLES (FOR STEP 1)
   ============================================ */
.header-placeholder,
.footer-placeholder,
.hero-placeholder,
.page-hero {
    background-color: var(--secondary-dark);
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed var(--accent-color);
    margin: 20px;
    border-radius: 8px;
}

.header-placeholder p,
.footer-placeholder p,
.hero-placeholder p,
.page-hero p {
    color: var(--text-grey);
    font-size: 18px;
}

.hero-placeholder h1,
.page-hero h1 {
    color: var(--accent-color);
    font-size: 36px;
    margin-bottom: 15px;
}

/* ============================================
   BASIC LAYOUT STRUCTURE
   ============================================ */
main {
    min-height: 60vh;
}

/* ============================================
   HEADER STYLES
   ============================================ */
#main-header {
    background-color: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: var(--text-white);
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-light), var(--teal-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--secondary-dark);
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--accent-color);
}

.search-bar input {
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    width: 180px;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: 5px;
}

.search-btn:hover {
    color: var(--accent-light);
}

/* Sign In Button & Log In Button */
.btn-sign-in,
.btn-log-in {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-sign-in:hover,
.btn-log-in:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Country Selector */
.country-selector select {
    background-color: var(--secondary-dark);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.country-selector select:hover {
    border-color: var(--accent-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
#main-footer {
    background-color: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Columns (for utility.html and similar pages) */
.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 30px;
}

/* App Downloads */
.app-downloads h4,
.social-links h4 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--card-bg);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.app-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.app-btn svg {
    flex-shrink: 0;
}

.app-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn small {
    font-size: 10px;
    color: var(--text-grey);
}

.app-btn strong {
    font-size: 14px;
    color: var(--text-white);
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    color: var(--text-grey);
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-grey);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 20px;
    }

    .search-bar input {
        width: 120px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: var(--secondary-dark);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        border-right: 1px solid var(--border-color);
        margin: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 0;
        border-bottom: none;
    }

    .header-actions {
        gap: 10px;
    }

    .search-bar {
        display: none;
    }

    .btn-sign-in,
    .btn-log-in {
        padding: 8px 15px;
        font-size: 13px;
    }

    .country-selector {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .app-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   HOME PAGE - HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        url('https://images.unsplash.com/photo-1593784991095-a205069470b6?q=80&w=2070&auto=format&fit=crop'),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--card-bg) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 12, 26, 0.7) 0%,
        rgba(6, 12, 26, 0.85) 50%,
        rgba(6, 12, 26, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--teal-main);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background-color: var(--teal-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ============================================
   CONTAINER & SECTION STYLES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 20px;
    background-color: var(--secondary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(26, 111, 212, 0.25);
    border-color: var(--accent-light);
}

.feature-icon {
    color: var(--accent-light);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 100px 20px;
    background-color: var(--primary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 111, 212, 0.5);
}

.step-icon {
    color: var(--accent-light);
    margin: 40px 0 20px 0;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-card p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ============================================
   ADDITIONAL SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 20px;
    background-color: var(--secondary-dark);
}

/* Content Article Styles - For long-form content */
.content-article {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
    line-height: 1.8;
}

.content-article h3 {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-article h3:first-child {
    margin-top: 40px;
}

.content-article p {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    text-align: justify;
}

.content-article p:last-child {
    margin-bottom: 0;
}

/* Packages FAQ Section Spacing */
.packages-faq {
    padding: 100px 20px;
    background: #1a1f2e;
}

.packages-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: var(--text-white);
}

.packages-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.packages-faq .faq-item {
    background: var(--card-bg);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

/* .packages-faq .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 111, 212, 0.2);
    border-color: var(--accent-light);
} */

.packages-faq .faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-white);
    font-weight: 600;
}

.packages-faq .faq-item p {
    line-height: 1.9;
    color: var(--text-body);
    margin: 0;
    font-size: 1.05rem;
}

/* Comparison Section Spacing */
.comparison-section {
    padding: 100px 20px;
    background: var(--secondary-dark);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-content p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ============================================
   RESPONSIVE - HERO & FEATURES
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-section,
    .how-it-works-section,
    .services-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .feature-card,
    .service-content {
        padding: 25px 20px;
    }
}

/* ============================================
   PACKAGES PAGE STYLES
   ============================================ */

/* Packages Hero Section */
.packages-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.packages-hero h1 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.packages-hero p {
    font-size: 20px;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--primary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 168, 232, 0.2);
}

/* Popular Badge */
.pricing-card.popular {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1729 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, #0086b3 100%);
    color: var(--text-white);
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.4);
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
}

.package-tagline {
    font-size: 16px;
    color: var(--text-grey);
    margin: 0;
}

/* Package Price */
.package-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-price .currency {
    font-size: 24px;
    color: var(--accent-color);
    vertical-align: top;
    margin-right: 4px;
}

.package-price .amount {
    font-size: 56px;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1;
}

.package-price .period {
    font-size: 18px;
    color: var(--text-grey);
    margin-left: 4px;
}

/* Package Features */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.5;
}

.package-features .check-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Subscribe Button */
.btn-subscribe {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #0086b3;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
}

.pricing-card.popular .btn-subscribe {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0086b3 100%);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    background: var(--secondary-dark);
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1729 100%);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--accent-color);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 168, 232, 0.05);
}

.comparison-table td {
    padding: 18px 20px;
    color: var(--text-grey);
    font-size: 15px;
}

.comparison-table td:first-child {
    color: var(--text-white);
    font-weight: 500;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

/* FAQ Section */
.packages-faq {
    padding: 80px 20px;
    background: var(--primary-dark);
}

.packages-faq h2 {
    text-align: center;
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-dark);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* .faq-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.15);
} */

.faq-item h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Packages Page */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .packages-hero h1 {
        font-size: 40px;
    }

    .comparison-section h2,
    .packages-faq h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        padding: 60px 20px 40px;
    }

    .packages-hero h1 {
        font-size: 32px;
    }

    .packages-hero p {
        font-size: 18px;
    }

    .pricing-section,
    .comparison-section,
    .packages-faq {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-section h2,
    .packages-faq h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 28px;
    }

    .packages-hero p {
        font-size: 16px;
    }

    .package-header h3 {
        font-size: 28px;
    }

    .package-price .amount {
        font-size: 48px;
    }

    .comparison-section h2,
    .packages-faq h2 {
        font-size: 26px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 18px;
    }
}

/* ========================================
   DEVICES PAGE STYLES
   ======================================== */

/* Devices Hero Section */
.devices-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.devices-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.devices-hero p {
    font-size: 20px;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto;
}

/* Supported Devices Section */
.supported-devices {
    padding: 80px 20px;
    background: #0f0f1e;
}

.supported-devices h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #8a99b3;
    max-width: 600px;
    margin: 0 auto 60px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.device-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 122, 255, 0.25);
    border-color: rgba(10, 122, 255, 0.3);
}

.device-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 122, 255, 0.15) 0%, rgba(10, 122, 255, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(10, 122, 255, 0.2);
}

.device-icon svg {
    color: #0a7aff;
}

.device-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.device-card > p {
    color: #0a7aff;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 500;
}

.device-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.device-features li {
    color: #b8c5d6;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.device-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a7aff;
    font-weight: bold;
    font-size: 18px;
}

.device-link {
    display: inline-flex;
    align-items: center;
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.device-link:hover {
    color: #3d94ff;
    gap: 8px;
}

/* Setup Instructions Section */
.setup-instructions {
    padding: 80px 20px;
    background: #16213e;
}

.setup-instructions h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.setup-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.setup-card:hover {
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.15);
}

.setup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(10, 122, 255, 0.2);
}

.setup-header svg {
    color: #0a7aff;
    flex-shrink: 0;
}

.setup-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(10, 122, 255, 0.3);
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

/* Device Limits Section */
.device-limits {
    padding: 80px 20px;
    background: #0f0f1e;
}

.device-limits h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.limit-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.limit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(10, 122, 255, 0.2);
    border-color: rgba(10, 122, 255, 0.3);
}

.limit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 122, 255, 0.15) 0%, rgba(10, 122, 255, 0.05) 100%);
    border-radius: 50%;
}

.limit-icon svg {
    color: #0a7aff;
}

.limit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.limit-card p {
    color: #b8c5d6;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    padding: 80px 20px;
    text-align: center;
}

.download-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.download-cta > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 30px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-btn svg {
    flex-shrink: 0;
}

.download-btn div {
    text-align: left;
}

.download-btn small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.download-btn strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Responsive Design for Devices Page */
@media (max-width: 1024px) {
    .devices-hero h1 {
        font-size: 42px;
    }

    .supported-devices h2,
    .setup-instructions h2,
    .device-limits h2,
    .download-cta h2 {
        font-size: 36px;
    }

    .devices-grid,
    .limits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .devices-hero {
        padding: 80px 20px 60px;
    }

    .devices-hero h1 {
        font-size: 36px;
    }

    .devices-hero p {
        font-size: 18px;
    }

    .supported-devices,
    .setup-instructions,
    .device-limits,
    .download-cta {
        padding: 60px 20px;
    }

    .supported-devices h2,
    .setup-instructions h2,
    .device-limits h2,
    .download-cta h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .devices-grid,
    .limits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .setup-card {
        padding: 30px 25px;
    }

    .setup-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .devices-hero h1 {
        font-size: 28px;
    }

    .devices-hero p {
        font-size: 16px;
    }

    .supported-devices h2,
    .setup-instructions h2,
    .device-limits h2,
    .download-cta h2 {
        font-size: 26px;
    }

    .device-card,
    .limit-card {
        padding: 30px 20px;
    }

    .setup-card {
        padding: 25px 20px;
    }

    .setup-header h3 {
        font-size: 22px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .download-cta > p {
        font-size: 18px;
    }
}

/* ========================================
   UTILITY PAGE STYLES
   ======================================== */

/* Utility Hero Section */
.utility-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.utility-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.utility-hero p {
    font-size: 20px;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Actions Section */
.quick-actions {
    padding: 80px 20px;
    background: #0f0f1e;
}

.quick-actions h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.action-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 122, 255, 0.25);
    border-color: rgba(10, 122, 255, 0.3);
}

.action-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 122, 255, 0.15) 0%, rgba(10, 122, 255, 0.05) 100%);
    border-radius: 50%;
    margin-bottom: 25px;
}

.action-icon svg {
    color: #0a7aff;
}

.action-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.action-card p {
    color: #b8c5d6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.action-link {
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: #3d94ff;
    gap: 6px;
}

/* Account Overview Section */
.account-overview {
    padding: 80px 20px;
    background: #16213e;
}

.account-overview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-card:hover {
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.2);
}

.overview-label {
    font-size: 14px;
    color: #8a99b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.overview-value {
    font-size: 32px;
    font-weight: 700;
    color: #0a7aff;
    line-height: 1;
}

.overview-detail {
    font-size: 15px;
    color: #b8c5d6;
    line-height: 1.5;
    margin-bottom: 8px;
}

.btn-outline-small {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #0a7aff;
    border-radius: 8px;
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-outline-small:hover {
    background: #0a7aff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 122, 255, 0.3);
}

/* Support Resources Section */
.support-resources {
    padding: 80px 20px;
    background: #0f0f1e;
}

.support-resources h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.resource-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(10, 122, 255, 0.25);
    border-color: rgba(10, 122, 255, 0.3);
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.resource-card p {
    color: #b8c5d6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #3d94ff;
}

/* Troubleshooting Section */
.troubleshooting {
    padding: 80px 20px;
    background: #16213e;
}

.troubleshooting h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.troubleshoot-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.troubleshoot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(10, 122, 255, 0.2);
    border-color: rgba(10, 122, 255, 0.3);
}

.troubleshoot-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.troubleshoot-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.troubleshoot-card li {
    color: #b8c5d6;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.troubleshoot-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0a7aff;
    font-size: 20px;
    font-weight: bold;
}

.troubleshoot-link {
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.troubleshoot-link:hover {
    color: #3d94ff;
    gap: 6px;
}

/* Responsive Design for Utility Page */
@media (max-width: 1024px) {
    .utility-hero h1 {
        font-size: 42px;
    }

    .quick-actions h2,
    .account-overview h2,
    .support-resources h2,
    .troubleshooting h2 {
        font-size: 36px;
    }

    .actions-grid,
    .overview-grid,
    .troubleshooting-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .utility-hero {
        padding: 80px 20px 60px;
    }

    .utility-hero h1 {
        font-size: 36px;
    }

    .utility-hero p {
        font-size: 18px;
    }

    .quick-actions,
    .account-overview,
    .support-resources,
    .troubleshooting {
        padding: 60px 20px;
    }

    .quick-actions h2,
    .account-overview h2,
    .support-resources h2,
    .troubleshooting h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .actions-grid,
    .overview-grid,
    .resources-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .utility-hero h1 {
        font-size: 28px;
    }

    .utility-hero p {
        font-size: 16px;
    }

    .quick-actions h2,
    .account-overview h2,
    .support-resources h2,
    .troubleshooting h2 {
        font-size: 26px;
    }

    .action-card,
    .overview-card,
    .resource-card,
    .troubleshoot-card {
        padding: 30px 20px;
    }

    .action-card h3,
    .resource-card h3,
    .troubleshoot-card h3 {
        font-size: 20px;
    }

    .overview-value {
        font-size: 28px;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(10, 122, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.about-hero p {
    font-size: 22px;
    color: #a0aec0;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 20px;
    background: #0d1b2a;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 40px rgba(10, 122, 255, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mission-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #a0aec0;
}

/* Company Story Section */
.company-story {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b263b 100%);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #cbd5e0;
    margin-bottom: 25px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #0a7aff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Values Section */
.core-values {
    padding: 80px 20px;
    background: #0d1b2a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #a0aec0;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b263b 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: #0a7aff;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: #0d1b2a;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-card {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 10px 30px rgba(10, 122, 255, 0.15);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.choose-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #0a7aff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===================================
   ABOUT PAGE RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 46px;
    }

    .about-hero p {
        font-size: 20px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 60px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .mission-vision {
        padding: 60px 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .company-story,
    .core-values,
    .leadership-team,
    .why-choose-us {
        padding: 60px 20px;
    }

    .story-text p {
        font-size: 16px;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .team-grid,
    .choose-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-cta {
        padding: 80px 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .mission-card h2 {
        font-size: 26px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 32px;
    }

    .value-icon {
        font-size: 36px;
    }

    .value-card h3,
    .choose-card h3 {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 26px;
    }
}

/* =====================================================
   FAQ PAGE STYLES
   ===================================================== */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 122, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.faq-hero p {
    font-size: 20px;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* FAQ Search Bar */
.faq-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.faq-search input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #0a7aff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(10, 122, 255, 0.1);
}

.faq-search input::placeholder {
    color: #a0aec0;
}

/* FAQ Categories */
.faq-categories {
    background: #0d1b2a;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.category-tabs {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #0a7aff;
    border-radius: 2px;
}

.category-tab {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #a0aec0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab:hover {
    background: rgba(10, 122, 255, 0.1);
    border-color: rgba(10, 122, 255, 0.3);
    color: #0a7aff;
}

.category-tab.active {
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    border-color: #0a7aff;
    color: #ffffff;
}

/* FAQ Sections */
.faq-section {
    padding: 60px 20px;
    background: #0d1b2a;
}

.faq-section:nth-child(even) {
    background: linear-gradient(180deg, #0d1b2a 0%, #1b263b 100%);
}

.faq-category-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    font-size: 42px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .faq-item:hover {
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 5px 20px rgba(10, 122, 255, 0.1);
} */

.faq-question {
    width: 100%;
    padding: 25px 30px 0 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: default;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ffffff;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    display: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #0a7aff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: none;
    overflow: visible;
    transition: none;
    padding: 0 30px 30px 30px;
}

.faq-item.active .faq-answer {
    max-height: none;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
    color: #a0aec0;
}

.faq-answer li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer a {
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 600;
}

/* FAQ CTA Section */
.faq-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a7aff 0%, #0056b3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.faq-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a7aff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   BLOG PAGE STYLES
   ===================================================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 122, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.blog-hero p {
    font-size: 20px;
    color: #a0aec0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: #0d1b2a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 122, 255, 0.3);
    box-shadow: 0 15px 40px rgba(10, 122, 255, 0.25);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #1b263b;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Blog Content */
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.blog-category {
    background: rgba(10, 122, 255, 0.15);
    color: #0a7aff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #8a99b3;
    font-size: 13px;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: #0a7aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    color: #3d94ff;
    gap: 12px;
}

/* Blog Responsive Styles */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 20px 60px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-hero p {
        font-size: 18px;
    }

    .blog-section {
        padding: 60px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =====================================================
   FAQ PAGE RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1024px) {
    .faq-hero h1 {
        font-size: 42px;
    }

    .faq-hero p {
        font-size: 18px;
    }

    .faq-category-title {
        font-size: 32px;
    }

    .category-icon {
        font-size: 36px;
    }

    .faq-cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 80px 20px 60px;
    }

    .faq-hero h1 {
        font-size: 36px;
    }

    .faq-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .faq-categories {
        padding: 20px 15px;
        top: 70px;
    }

    .category-tabs {
        gap: 10px;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .faq-section {
        padding: 50px 15px;
    }

    .faq-category-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .category-icon {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
        gap: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }

    .faq-cta {
        padding: 60px 20px;
    }

    .faq-cta-content h2 {
        font-size: 32px;
    }

    .faq-cta-content p {
        font-size: 16px;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 28px;
    }

    .faq-hero p {
        font-size: 15px;
    }

    .faq-search input {
        padding: 16px 20px 16px 50px;
        font-size: 15px;
    }

    .category-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .faq-category-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category-icon {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .faq-cta-content h2 {
        font-size: 26px;
    }

    .faq-cta-content p {
        font-size: 15px;
    }
}

/* ============================================
   SIGN IN PAGE STYLES
   ============================================ */
.signin-section {
    background-color: var(--primary-dark);
    padding: 80px 20px;
    min-height: calc(100vh - 200px);
}

.signin-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signin-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.signin-header {
    margin-bottom: 32px;
    text-align: center;
}

.signin-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.signin-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.signin-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.forgot-password {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent-color);
}

.btn-full-width {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.signin-divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.signin-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.signin-divider span {
    position: relative;
    background-color: var(--card-bg);
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.signin-alternatives {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: var(--card-hover);
    border-color: var(--accent-color);
}

.btn-google svg,
.btn-apple svg {
    width: 20px;
    height: 20px;
}

.signin-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.signin-footer p {
    color: var(--text-body);
    font-size: 14px;
}

.signup-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: var(--accent-color);
}

.signin-info {
    padding: 40px;
}

.signin-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-white);
}

.signin-info ul {
    list-style: none;
}

.signin-info li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-body);
    font-size: 18px;
}

.signin-info li svg {
    flex-shrink: 0;
    color: var(--teal-bright);
}

/* Responsive Sign In Styles */
@media (max-width: 968px) {
    .signin-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signin-info {
        order: -1;
        padding: 20px;
    }

    .signin-info h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .signin-info li {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .signin-card {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .signin-section {
        padding: 40px 16px;
    }

    .signin-card {
        padding: 24px 16px;
    }

    .signin-header h1 {
        font-size: 26px;
    }

    .signin-info h2 {
        font-size: 24px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   DSTV STREAM CONTENT SECTION
   ============================================ */
.dstv-content-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 20px;
    position: relative;
}

.dstv-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.dstv-article {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.content-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, var(--teal-bright), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(79, 70, 229, 0.1));
    border-left: 4px solid var(--teal-bright);
    border-radius: 8px;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
}

.content-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-bright);
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.3;
}

.content-section p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 20px;
    text-align: justify;
}

.content-section strong {
    color: var(--text-white);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.faq-item {
    background: linear-gradient(135deg, var(--secondary-dark), var(--bg-dark));
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* .faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--teal-bright);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
} */

.faq-item h4 {
    font-size: 20px;
    color: var(--teal-bright);
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
    text-align: left;
}

.content-conclusion {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(13, 148, 136, 0.15));
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    border: 1px solid var(--teal-bright);
}

.content-conclusion h3 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

.content-conclusion p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 25px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for DStv Content Section */
@media (max-width: 1024px) {
    .dstv-article {
        padding: 40px;
    }

    .content-title {
        font-size: 38px;
    }

    .content-section h3 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dstv-content-section {
        padding: 60px 15px;
    }

    .dstv-article {
        padding: 30px 25px;
    }

    .content-title {
        font-size: 32px;
    }

    .lead-paragraph {
        font-size: 18px;
    }

    .content-section h3 {
        font-size: 24px;
    }

    .content-section p {
        font-size: 16px;
        text-align: left;
    }

    .content-intro {
        padding: 20px;
    }

    .content-conclusion {
        padding: 25px;
    }

    .content-conclusion h3 {
        font-size: 28px;
    }

    .content-conclusion p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .dstv-article {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .content-title {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .lead-paragraph {
        font-size: 16px;
    }

    .content-intro {
        padding: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 18px;
    }
}
