/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-left {
    flex: none;
    margin-left: 60px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-sensorama {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.logo {
    height: 36px;
    width: auto;
    margin-left: -3px;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.logo:hover {
    transform: rotate(-180deg);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 60px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.embark-btn {
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
    color: #444;
    border: 2px solid #d0d0d0;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #666;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #666;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar {
    background: #ffffff;
}

.hamburger.active {
    opacity: 1;
    z-index: 1001;
    position: relative;
    background: rgba(102, 102, 102, 0.8);
    border-radius: 5px;
    padding: 8px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    transition: right 0.4s ease;
    backdrop-filter: blur(10px);
    display: none;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 40px;
    margin-top: 0;
}

.mobile-menu-links {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 300;
    margin: 40px 0;
    transition: all 0.3s ease;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #666;
    transform: none;
}

.mobile-embark-btn {
    background: none;
    color: #ffffff;
    border: none;
    padding: 0;
    font-size: 3rem;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    margin: 40px 0;
    box-shadow: none;
    display: block;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.mobile-embark-btn:hover {
    background: none;
    border: none;
    color: #666;
    transform: none;
    box-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 60px 60px;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.main-heading {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.1;
    color: #ffffff;
    font-family: Arial, sans-serif;
    white-space: pre-line;
    word-break: keep-all;
}

.main-subheading {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-transform: uppercase;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    max-width: 95%;
    white-space: pre;
    overflow-wrap: normal;
    word-break: normal;
}

/* Why Sensorama Section */
.why-section {
    padding: 100px 60px;
    background: #000;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    top: 80px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.3s ease-out;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 40px 0 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Space Grotesk", sans-serif;
}

.features-title {
    font-size: 7rem;
    font-weight: 300;
    text-align: left;
    color: #ffffff;
    line-height: 1.1;
    width: 100%;
    margin: 20px 0 0 0;
    flex: 1;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tech-content {
    position: absolute;
    bottom: 60px;
    right: 60px;
    text-align: right;
}

.tech-text {
    display: inline-block;
    max-width: 400px;
    text-align: left;
}

.tech-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.read-more-btn {
    background: transparent;
    color: #ccc;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 30px 10px 0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-align: left;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-weight: 700;
    font-size: 16px;
}

.read-more-btn:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.read-more-btn:hover::after {
    transform: translateY(-50%) translateX(5px) rotate(45deg);
}

/* Video Section */
.video-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: block;
    width: 100vw;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.video-controls {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.mute-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.mute-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* SVG Volume Icon Styles */
.mute-btn .mute-icon,
.mute-btn .unmute-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.mute-btn .volume-icon {
    width: 100%;
    height: 100%;
    fill: #ffffff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.mute-btn:hover .volume-icon {
    opacity: 1;
}

/* Mute slash - white diagonal line */
.mute-btn .mute-slash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, #ffffff  50%, rgba(255, 255, 255, 0.9) 100%);
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 1px;
    opacity: 0.95;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.mute-btn:hover .mute-slash {
    opacity: 1;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.video-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.video-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    display: block;
    line-height: 1.2;
}

.video-description {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: block;
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 60px;
    background: #ffffff;
    text-align: left;
    margin-top: 80px;
}

.newsletter-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #000;
    width: 100%;
    margin: 0 0 60px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.newsletter-form {
    width: 100%;
    margin: 0;
}

.newsletter-form .subscribe-btn {
    display: block;
    margin-left: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-group input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: border-bottom-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #000;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    color: #666;
    font-size: 14px;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
}

.subscribe-btn {
    background: #000;
    color: #ffffff;
    border: 1px solid #000;
    padding: 12px 100px;
    font-size: 16px;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 240px;
}

.subscribe-btn:hover {
    background: #ffffff;
    color: #000;
    border: 1px solid #000;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 60px 0 120px;
}

.footer .container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.footer-content {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
}

.footer-brand {
    flex: none;
    margin-left: 60px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-left: -3px;
    margin-top: -15px;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: rotate(-180deg);
}

.footer-sections {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    margin-left: auto;
    margin-right: 60px;
    max-width: 100%;
    overflow-x: auto;
}

.footer-section:last-child {
    text-align: left;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Space Grotesk", sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section ul li {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer-section ul li a:hover {
    color: #000;
}

/* Tablet optimization for footer */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 80px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .footer-brand {
        margin-left: 40px;
        margin-bottom: 15px;
    }
    
    .footer-brand h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .footer-sections {
        display: flex;
        justify-content: flex-start;
        gap: 50px;
        margin-left: 40px;
        margin-right: 40px;
        flex-wrap: wrap;
        width: calc(100% - 80px);
    }
    
    .footer-section {
        min-width: 120px;
        flex: 1;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 5px;
    }
    
    .footer-section ul li a,
    .footer-section ul li {
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 50px 40px;
        margin-top: 60px;
    }
    
    .newsletter-title {
        font-size: 3.2rem;
        margin-bottom: 45px;
    }
}

/* Better tablet handling for medium screens */
@media (max-width: 900px) {
    .footer {
        padding: 40px 0 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-brand {
        margin-left: 30px;
        margin-bottom: 12px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .footer-sections {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
    }
    
    .footer-section {
        min-width: auto;
        flex: none;
    }
    
    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a,
    .footer-section ul li {
        font-size: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-left {
        margin-left: 30px;
    }
    
    .nav-right {
        gap: 15px;
        margin-right: 30px;
    }
    
    .nav-container .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
        margin-right: 30px;
        margin-left: auto;
    }
    
    .embark-btn {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .navbar.menu-open .nav-left,
    .navbar.menu-open .nav-right {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .navbar.menu-open {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .navbar.menu-open .nav-container {
        justify-content: center;
    }
    
    .navbar.menu-open .nav-container .hamburger {
        margin-right: 30px;
        margin-left: auto;
    }
    
    .hero {
        padding: 0 30px 40px 30px;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .video-controls {
        top: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .mute-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .mute-btn .mute-icon,
    .mute-btn .unmute-icon {
        width: 18px;
        height: 18px;
    }
    
    .mute-btn .mute-slash {
        width: 24px;
        height: 2px;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-description {
        font-size: 14px;
    }
    
    .video-section {
        min-height: auto;
    }
    
    .video-controls {
        top: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .mute-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .mute-btn .mute-icon,
    .mute-btn .unmute-icon {
        width: 19px;
        height: 19px;
    }
    
    .mute-btn .mute-slash {
        width: 26px;
        height: 2px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .main-heading {
        font-size: 3.4rem;
        font-weight: 400;
        white-space: pre-line;
        word-break: keep-all;
    }
    
    .main-subheading {
        font-size: 14px;
        max-width: 95%;
        white-space: pre;
        overflow-wrap: normal;
        word-break: normal;
    }
    
    .why-section {
        padding: 80px 30px;
        min-height: auto;
    }

    .progress-bar {
        left: 30px;
        right: 30px;
        top: 80px;
    }

    .section-title {
        margin: 40px 0 20px 0;
        font-size: 1rem;
    }

    .features-title {
        font-size: 4rem;
        font-weight: 300;
        text-align: left;
        line-height: 1.2;
        margin: 15px 0 0 0;
        width: 100%;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    
    .tech-content {
        position: static;
        right: auto;
        text-align: left;
        margin-top: 80px;
    }
    
    .tech-text {
        max-width: 100%;
        text-align: left;
    }
    
    .footer {
        padding: 40px 0 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .footer-brand {
        margin-left: 30px;
        margin-bottom: 15px;
    }
    
    .footer-brand h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .footer-sections {
        display: flex;
        justify-content: flex-start;
        gap: 60px;
        margin-left: 30px;
        margin-right: 30px;
        flex-wrap: wrap;
    }
    
    .footer-section {
        min-width: 140px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-section ul li {
        margin-bottom: 5px;
    }
    
    .footer-section ul li a,
    .footer-section ul li {
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 50px 30px;
        margin-top: 50px;
    }

    .newsletter-title {
        font-size: 3rem;
        margin-bottom: 50px;
        margin: 0 0 50px 0;
    }

    .newsletter-form {
        max-width: 100%;
    }
    
    .logo {
        height: 30px;
        transition: transform 0.6s ease;
        cursor: pointer;
    }
    
    .footer-logo {
        height: 38px;
        transition: transform 0.6s ease;
        cursor: pointer;
    }
    
    .logo:hover {
        transform: rotate(-180deg);
    }
    
    .footer-logo:hover {
        transform: rotate(-180deg);
    }
}

@media (max-width: 480px) {
    .nav-left {
        margin-left: 20px;
    }
    
    .nav-right {
        margin-right: 20px;
        gap: 10px;
    }
    
    .nav-container .hamburger {
        margin-right: 20px;
        margin-left: auto;
    }
    
    .navbar.menu-open .nav-container .hamburger {
        margin-right: 20px;
        margin-left: auto;
    }
    
    .logo {
        height: 28px;
        transition: transform 0.6s ease;
        cursor: pointer;
    }
    
    .footer-logo {
        height: 35px;
        transition: transform 0.6s ease;
        cursor: pointer;
    }
    
    .logo:hover {
        transform: rotate(-180deg);
    }
    
    .footer-logo:hover {
        transform: rotate(-180deg);
    }
    
    .nav-sensorama {
        font-size: 20px;
    }
    
    .embark-btn {
        font-size: 11px;
        padding: 6px 15px;
        display: none; /* Hide on very small screens to save space */
    }
    
    .hero {
        padding: 0 20px 30px 20px;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .main-heading {
        font-size: 2.8rem;
        font-weight: 400;
        white-space: pre-line;
        word-break: keep-all;
    }
    
    .main-subheading {
        font-size: 12px;
        white-space: pre;
        overflow-wrap: normal;
        word-break: normal;
    }
    
    .why-section {
        padding: 60px 20px;
    }

    .progress-bar {
        left: 20px;
        right: 20px;
        top: 60px;
    }

    .section-title {
        font-size: 0.9rem;
        margin: 35px 0 15px 0;
    }
    
    .features-title {
        font-size: 2.8rem;
        font-weight: 300;
        line-height: 1.2;
        margin: 10px 0 0 0;
        width: 100%;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    
    .tech-content {
        margin-top: 70px;
    }
    
    .tech-text {
        max-width: 100%;
    }
    
    .tech-description {
        font-size: 14px;
    }
    
    .newsletter-section {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        margin: 0 0 40px 0;
    }

    .footer {
        padding: 40px 0 50px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-brand {
        margin-left: 20px;
        margin-bottom: 10px;
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .footer-sections {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a,
    .footer-section ul li {
        font-size: 12px;
    }
    
    .footer-section:last-child {
        text-align: left;
    }
    
    .mobile-nav-link {
        font-size: 2.5rem;
        margin: 30px 0;
    }
    
    .mobile-embark-btn {
        font-size: 2.5rem;
        margin: 30px 0;
    }
    
    .mobile-menu-content {
        padding: 100px 30px 30px;
    }
} 