/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #006097;
    --secondary-blue: #007abe;
    --accent-red: #bc0100;
    --accent-red-hover: #9e0100;
    --bg-dark: #0b1d2c;
    --bg-light: #edf4ff;
    --bg-light-alt: #cee5ff;
    --text-dark: #0b1d2c;
    --text-muted: #4f6072;
    --white: #ffffff;
    --white-translucent: rgba(255, 255, 255, 0.85);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 96, 151, 0.05), 0 2px 4px -1px rgba(0, 96, 151, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 96, 151, 0.08), 0 4px 6px -2px rgba(0, 96, 151, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 96, 151, 0.1), 0 10px 10px -5px rgba(0, 96, 151, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 96, 151, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-full);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary-blue);
}

.text-accent {
    color: var(--accent-red);
}

/* ==========================================================================
   BUTTONS & UTILITIES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(188, 1, 0, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 96, 151, 0.1);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.section-dark h2 {
    color: var(--white);
}

.section-dark h2::after {
    background-color: var(--white);
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    background-color: var(--bg-light-alt);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.header.sticky {
    background-color: var(--white-translucent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 96, 151, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: var(--transition);
}

.header.sticky .container {
    height: 80px;
}

.logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.header.sticky .logo img {
    height: 60px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background-color: var(--bg-light-alt);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
}

.hero-image-wrapper img.hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    background-color: var(--white);
    padding: 2.5rem;
    margin: 0 auto;
    display: block;
    box-shadow: inset 0 0 15px rgba(0, 96, 151, 0.05);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 96, 151, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    bottom: -20px;
    left: -20px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-blue);
    color: var(--white);
}

.badge-icon.red {
    background-color: var(--accent-red);
}

.badge-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-text p {
    font-size: 0.75rem;
    margin: 0;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
    padding-top: 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d79 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-content {
    flex: 1;
}

.pricing-tag {
    background-color: var(--accent-red);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.pricing-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.pricing-amount-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 250px;
}

.pricing-price {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.pricing-price span {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.pricing-tax {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section h2 {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 96, 151, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 96, 151, 0.15);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.service-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-blue);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   SAVOIR-FAIRE & CONFIANCE SECTION
   ========================================================================== */
.savoir-faire-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.savoir-faire-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.visual-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    align-items: center;
}

.visual-image {
    height: 100%;
    min-height: 160px;
    background-color: var(--bg-light-alt);
    position: relative;
    overflow: hidden;
}

.visual-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-text {
    padding: 2rem;
}

.visual-text h4 {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.visual-text.dark {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.visual-text.dark h4 {
    color: var(--white);
}

.savoir-faire-content h2 {
    text-align: left;
}

.savoir-faire-content h2::after {
    left: 0;
    transform: none;
}

.savoir-faire-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.savoir-faire-list {
    margin-bottom: 2.5rem;
}

.savoir-faire-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.savoir-faire-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--bg-light-alt);
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.savoir-faire-icon svg {
    width: 14px;
    height: 14px;
}

.savoir-faire-item p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Testimonial Box */
.testimonial-card {
    background-color: var(--white);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    line-height: 1;
    font-family: serif;
    color: rgba(0, 96, 151, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

/* ==========================================================================
   INTERVENTIONS ZONE SECTION
   ========================================================================== */
.zone-section {
    text-align: center;
}

.zone-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.zone-tag {
    background-color: var(--white);
    border: 1px solid rgba(0, 96, 151, 0.1);
    color: var(--text-dark);
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.zone-tag:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section h2 {
    margin-bottom: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    position: relative;
}

.contact-image-wrapper {
    border-radius: var(--radius-lg);
    background-color: var(--bg-light-alt);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-image-wrapper img {
    border-radius: var(--radius-md);
    width: 100%;
}

.contact-lead {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-description {
    margin-bottom: 2rem;
}

/* Form Styling */
.contact-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 96, 151, 0.05);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 96, 151, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    width: 100%;
    padding: 1rem;
}

/* Form Alerts */
.alert {
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .pricing-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .savoir-faire-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .savoir-faire-content {
        order: -1;
    }
    
    .savoir-faire-content h2 {
        text-align: center;
    }
    
    .savoir-faire-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
        z-index: 1000;
        gap: 2.5rem;
    }
    
    .nav.open {
        right: 0;
    }
    
    /* Toggle Icon Animation */
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .header.sticky .logo img {
        height: 45px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
    
    .pricing-amount-wrapper {
        min-width: 100%;
    }
    
    .visual-card {
        grid-template-columns: 1fr;
    }
    
    .visual-image {
        height: 180px;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
