:root {
    --bg-main: #020813;
    --bg-secondary: #0a192f;
    --bg-card: rgba(10, 25, 47, 0.7);
    --primary-color: #fbd043;
    /* Light Yellow */
    --primary-hover: #e5b931;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1; /* Brighter slate/light blue (was #94a3b8) */
    --border-color: rgba(251, 208, 67, 0.2);
    --glass-bg: rgba(2, 8, 19, 0.5);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    scroll-snap-type: y mandatory;
}

/* Page scrolling darkening effect */
/* Page scrolling context */
.page-darken .visual-showcase,
.page-darken .vehicle-grid,
.page-darken .video-split-container,
.page-darken .contact-links-container,
.page-darken .footer-integrated,
.page-darken .mega-video-wrapper,
.page-darken .uav-description-box {
    filter: brightness(0.15);
    opacity: 0.4;
}

.page-active .visual-showcase,
.page-active .vehicle-grid,
.page-active .video-split-container,
.page-active .contact-links-container,
.page-active .footer-integrated,
.page-active .mega-video-wrapper,
.page-active .uav-description-box {
    filter: brightness(1);
    opacity: 1;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(2, 8, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end; /* Group links and button to the right */
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-right: auto; /* Push the logo to the left side */
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-right: 32px; /* Space between links and search/contact button */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn, 
.nav-item {
    font-weight: 700 !important;
    font-size: 1.15rem !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-secondary);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1000;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    top: 100%;
    left: -20px;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: rgba(251, 208, 67, 0.1);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-nav {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
}

.cta-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 208, 67, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    scroll-snap-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(2, 8, 19, 0.9) 0%, rgba(2, 8, 19, 0.4) 50%, rgba(2, 8, 19, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 5rem;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-bird-icon {
    height: 1em; /* Scales seamlessly with the parent text's font-size */
    width: auto;
    transform: translateY(-5px); /* Fine-tune baseline alignment if needed */
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Sections Common */
.section {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
}

/* Background Gradients for Sections */
#vehicles {
    background: var(--bg-main);
}

#compatibility {
    background: linear-gradient(to bottom, var(--bg-main) 0%, var(--bg-secondary) 15%, var(--bg-secondary) 85%, #0b2246 100%);
    padding-bottom: 250px;
}

#performance {
    background: linear-gradient(to bottom, #0b2246 0%, #0b2246 85%, var(--bg-secondary) 100%);
}

#multi-instance {
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-secondary) 85%, var(--bg-main) 100%);
}

#scenarios {
    background: linear-gradient(to bottom, var(--bg-main) 0%, var(--bg-main) 85%, var(--bg-secondary) 100%);
}

#contact {
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-secondary) 85%, var(--bg-main) 100%);
}

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

.section-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.275rem; /* 0.85rem * 1.5 */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 700;
}

.badge-center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

/* Split Section */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

.content-side {
    flex: 1;
}

.visual-side {
    flex: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1.2); /* Adjust scale for visual side width */
    margin-left: 10%; /* Move the video appropriately closer to edge if needed */
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* Multi-Instance Section */
.visual-showcase {
    margin-top: 50px;
    position: relative;
}

.mega-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.mega-video-wrapper video {
    width: 100%;
    object-fit: cover;
    display: block;
}

.stat-boxes {
    position: absolute;
    bottom: -20px;
    right: 40px;
    display: flex;
    gap: 15px;
}

.stat-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

#uav-desc {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vehicle-grid.user-interacted:hover ~ #uav-desc {
    opacity: 1;
}

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

.uav-title {
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

/* Vehicle Types Section */
.vehicle-grid-container {
    width: 100%;
    margin-top: 50px;
    padding: 0 20px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin-left: -10%;
    margin-right: -10%;
    margin-bottom: 20px;
    position: relative;
    aspect-ratio: 16 / 9;
    transition: grid-template-columns 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), gap 0.4s ease;
}

.vehicle-grid.user-interacted:has(.vehicle-card:nth-child(1):hover) { grid-template-columns: 1fr 0fr; grid-template-rows: 1fr 0fr; gap: 0; }
.vehicle-grid.user-interacted:has(.vehicle-card:nth-child(2):hover) { grid-template-columns: 0fr 1fr; grid-template-rows: 1fr 0fr; gap: 0; }
.vehicle-grid.user-interacted:has(.vehicle-card:nth-child(3):hover) { grid-template-columns: 1fr 0fr; grid-template-rows: 0fr 1fr; gap: 0; }
.vehicle-grid.user-interacted:has(.vehicle-card:nth-child(4):hover) { grid-template-columns: 0fr 1fr; grid-template-rows: 0fr 1fr; gap: 0; }

.vehicle-card {
    min-width: 0;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1;
}

.vehicle-card:hover {
    z-index: 10;
}

.vehicle-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vehicle-card:hover video,
.vehicle-card.active video {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.card-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

/* Contact Us Section */
.contact-links-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.contact-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(251, 208, 67, 0.15);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.contact-link-card:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Integrated Footer Area */
/* Integrated Footer Area */
.footer-integrated {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-main-content {
    flex: 1;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

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

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.6;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    min-width: 200px;
}

.footer-links-column h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 60px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Animations placeholder */
/* Titles and Badges stay immediately visible */
.section-badge,
.section-title {
    opacity: 1 !important;
    filter: brightness(1) !important;
    transform: none !important;
    transition: none !important;
}

/* Descriptions and other components fade in on active page */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.section-text,
.section-bottom-text {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.page-active .reveal,
.page-active .reveal-left,
.page-active .reveal-right,
.page-active .reveal-up,
.page-active .section-text,
.page-active .section-bottom-text {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {

    .split-container,
    .split-section.reverse .split-container {
        flex-direction: column;
    }

    .video-split-container {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Video Split Container */
.video-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
    margin-left: -10%;
    margin-right: -10%;
    transition: grid-template-columns 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), gap 0.4s ease;
}

.video-split-container.user-interacted:has(.video-split-card:nth-child(1):hover) {
    grid-template-columns: 1fr 0fr;
    gap: 0;
}
.video-split-container.user-interacted:has(.video-split-card:nth-child(2):hover) {
    grid-template-columns: 0fr 1fr;
    gap: 0;
}

.video-split-card {
    min-width: 0;
    min-height: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.video-split-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.video-split-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 10px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }
    .close-modal {
        top: -45px;
        right: 0;
    }
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 40px auto 60px;
    padding: 0 20px;
    text-align: left;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
}

.send-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .send-icon {
    transform: translate(3px, -3px);
}

.form-status {
    margin-top: 20px;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 8px;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
    /* General & Typography */
    html {
        scroll-padding-top: 110px;
    }
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 60px 0;
        scroll-snap-align: start;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-badge {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .logo {
        margin-right: auto;
    }
    .nav-links {
        margin-right: 0;
        gap: 15px;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }
    .navbar.scrolled {
        padding: 10px 0;
    }
    .hero {
        padding-top: 60px;
        scroll-snap-align: start;
    }

    /* Vehicle Grid */
    .vehicle-grid,
    .vehicle-grid.user-interacted:has(.vehicle-card:nth-child(1):hover),
    .vehicle-grid.user-interacted:has(.vehicle-card:nth-child(2):hover),
    .vehicle-grid.user-interacted:has(.vehicle-card:nth-child(3):hover),
    .vehicle-grid.user-interacted:has(.vehicle-card:nth-child(4):hover) {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        aspect-ratio: auto;
        gap: 20px !important;
        margin-left: 0;
        margin-right: 0;
    }
    .vehicle-card {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    /* Split Containers */
    .video-split-container,
    .video-split-container.user-interacted:has(.video-split-card:nth-child(1):hover),
    .video-split-container.user-interacted:has(.video-split-card:nth-child(2):hover) {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-left: 0;
        margin-right: 0;
    }

    /* Statistics Boxes */
    .stat-boxes {
        position: relative;
        bottom: 0;
        right: 0;
        justify-content: center;
        margin-top: 15px;
    }

    /* Footer */
    .footer-integrated {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-main-content {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-links-column {
        text-align: center;
        align-items: center;
    }

    /* Contact Links */
    .contact-links-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-link-card {
        width: 100%;
        max-width: 300px;
    }
}