/* ===========================
   GOOGLE FONTS IMPORT
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

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

:root {
    /* Primary Colors - Deep Navy/Ultramarine */
    --primary-color: #0a1e3a;
    --primary-dark: #061426;
    --primary-light: #1a2a6c;

    /* Accent Colors - Electric Blue/Turquoise */
    --accent-color: #1ec6ff;
    --accent-dark: #0ea5d9;
    --accent-light: #22c1c3;
    --accent-gradient: linear-gradient(135deg, #1ec6ff 0%, #22c1c3 100%);

    /* Background Colors */
    --bg-light: #f3f5f7;
    --bg-lighter: #fafbfc;
    --bg-white: #ffffff;
    --bg-accent-light: rgba(30, 198, 255, 0.08);

    /* Text Colors */
    --text-dark: #23272c;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;

    /* Border & Divider Colors */
    --border-color: #e5e7eb;
    --border-light: #f0f1f3;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(10, 30, 58, 0.08);
    --shadow-md: 0 4px 12px 0 rgba(10, 30, 58, 0.12);
    --shadow-lg: 0 10px 24px 0 rgba(10, 30, 58, 0.15);
    --shadow-xl: 0 20px 40px 0 rgba(10, 30, 58, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a1e3a 0%, #1a2a6c 100%);
    --gradient-accent: linear-gradient(135deg, #1ec6ff 0%, #22c1c3 100%);
    --gradient-hero: linear-gradient(135deg, #0a1e3a 0%, #1a2a6c 50%, #2d3561 100%);

    /* Typography */
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-lighter);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem; /* 48px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
}

h4 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-dark);
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem; /* 32px */
    }

    h2 {
        font-size: 1.75rem; /* 28px */
    }

    h3 {
        font-size: 1.375rem; /* 22px */
    }

    body {
        font-size: 16px;
    }
}

/* ===========================
   LAYOUT & CONTAINER
   =========================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
        padding: 0 var(--spacing-lg);
    }
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-lighter);
    margin: 0 var(--spacing-xs);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 193, 195, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle,
.hero .lead {
    color: rgba(255, 255, 255, 0.92);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.25rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle,
    .hero .lead {
        font-size: 1.125rem;
    }
}



/* ===========================
   CARDS & TILES
   =========================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    transition: height var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.card:hover::before {
    height: 100%;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.375rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.card:hover h3 {
    color: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
    filter: grayscale(0.2);
    transition: all var(--transition-base);
}

.card:hover .card-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===========================
   GRID LAYOUTS
   =========================== */
.grid {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

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

@media (min-width: 640px) {
    .grid-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .grid-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   SECTIONS
   =========================== */
section {
    background: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}



/* ===========================
   BUTTONS & CTA
   =========================== */
.btn-primary {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0ea5d9 0%, #1a9fb8 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

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

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ===========================
   FORMS
   =========================== */
.form-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl) var(--spacing-md);
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
}

.business-form,
form {
    max-width: 600px;
    margin: var(--spacing-xl) auto 0;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
.search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-base);
    transition: all var(--transition-base);
    background: var(--bg-white);
    color: var(--text-dark);
}

input:focus,
textarea:focus,
.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(30, 198, 255, 0.12);
    background: var(--bg-lighter);
}

textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-lighter);
}

.form-trust-message {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-accent-light);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

/* ===========================
   SEARCH
   =========================== */
.search-box {
    margin: var(--spacing-xl) 0;
    position: relative;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    padding-left: 3.5rem !important;
    font-size: 1.125rem;
    font-weight: 500;
}

.search-input:focus {
    transform: translateY(-2px);
}

/* ===========================
   FAQ
   =========================== */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ===========================
   CTA SECTIONS
   =========================== */
.business-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
}

.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-header h2 {
    color: var(--primary-dark);
    font-size: 1.75rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: white;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===========================
   RESPONSIVE - TABLET & DESKTOP
   =========================== */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    section {
        padding: var(--spacing-2xl);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem var(--spacing-lg);
    }
}

/* ===========================
   TOP CTA BANNER
   =========================== */
.top-cta-banner {
    background: var(--gradient-accent);
    color: white;
    padding: 1.125rem 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s ease-out;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-cta-banner p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.top-cta-banner strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-cta-banner a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.top-cta-banner a:hover {
    opacity: 0.8;
    text-decoration: none;
}

@media (max-width: 768px) {
    .top-cta-banner p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-info {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.footer-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.footer-info a:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: white;
}

@media (max-width: 768px) {
    footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .footer-info h3 {
        font-size: 1.25rem;
    }

    .footer-info p {
        font-size: 0.9375rem;
    }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    background: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.faq-item {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.faq-item h3::before {
    content: 'Q:';
    color: var(--accent-color);
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 2.5rem;
}

/* ===========================
   TRUST & BENEFITS SECTIONS
   =========================== */
.trust,
.benefits-section {
    background: var(--bg-accent-light);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    margin: var(--spacing-xl) 0;
}

.trust h2,
.benefits-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.trust ul,
.benefits-list {
    list-style: none;
    padding: 0;
}

.trust ul li,
.benefits-list li {
    padding: var(--spacing-md) 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-dark);
}

.trust ul li::before,
.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: var(--spacing-md);
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
}

/* ===========================
   CTA SECTIONS
   =========================== */
.final-cta,
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 198, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.final-cta h2,
.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.final-cta p,
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary,
.cta-section .btn-primary {
    position: relative;
    z-index: 1;
}

/* ===========================
   EDUCATION & CONTENT SECTIONS
   =========================== */
.education {
    background: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    line-height: 1.8;
}

.education h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.education h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.education p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.education ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.education ul li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.education ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ===========================
   FOOTER STYLES
   =========================== */
.site-footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
