@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

    .hero {
        padding: 0 var(--spacing-md);
        align-items: flex-start;
        text-align: left;
    }

    .hero h1 {
        font-size: 40px;
    }

    /* Mobile carousel adjustments */
    .carousel-container::before {
        background: linear-gradient(to bottom,
            rgba(10, 25, 47, 0.95) 0%,
            rgba(10, 25, 47, 0.85) 20%,
            rgba(10, 25, 47, 0.7) 40%,
            rgba(10, 25, 47, 0.5) 60%,
            rgba(10, 25, 47, 0.3) 80%,
            transparent 100%) !important;
    }

    .carousel-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 25, 47, 0.4);
        z-index: 2;
        pointer-events: none;
    }

    .hero-content {
        max-width: 100%;
        z-index: 15;
    }

    .hero h1,
    .hero p,
    .hero-subtitle,
    .hero-org {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 9999 !important;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex !important;
        z-index: 10000 !important;
        position: relative;
        align-items: center;
        justify-content: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .leadership {
        grid-template-columns: 1fr !important;
    }

    /* Info Showcase Mobile */
    .info-showcase-content,
    .info-showcase-reverse .info-showcase-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .info-text,
    .info-image {
        max-width: 100%;
    }

    .info-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portal-container h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 32px;
    }

    .form-container {
        padding: var(--spacing-md);
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-xs);
    }

    .btn+.btn {
        margin-left: 0 !important;
    }
}