@media (max-width: 768px) {
    * {
        box-sizing: inherit;
    }

    .navbar {
        display: none;
    }


    .mobile-navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(36, 36, 38);
        color: white;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        overflow-y: auto;
    }

    .mobile-navbar.active {
        display: flex;
    }

    body.noscroll {
        height: 100vh;
        overflow: hidden;
    }

    .mobile-navbar .nav-items {
        width: 100%;
        margin-top: 100px;
    }

    .mobile-navbar .nav-items a,
    .mobile-navbar .nav-items .nav-dropdown-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        text-decoration: none;
        color: white;
        font-size: 1.2em;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        width: 100%;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-navbar .nav-items a:last-child,
    .mobile-navbar .nav-items .nav-dropdown:last-child .nav-dropdown-title {
        border-bottom: none;
    }

    .mobile-navbar .nav-items .nav-dropdown-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .mobile-navbar .nav-items .nav-dropdown-title::after {
        content: '>';
        font-size: 1.1em;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .mobile-navbar .nav-items .nav-dropdown-title.active::after {
        transform: rotate(90deg);
    }

    .nav-dropdown-content {
        display: flex;
        flex-direction: column;
        margin-left: 20px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-in-out;
    }

    .nav-dropdown-content.active {
        max-height: 300px;
        opacity: 1;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 30px;
        right: 40px;
        z-index: 1001;
        cursor: pointer;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 5px;
        margin: 5px 0;
        transition: 0.4s;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-mobile {
        position: absolute;
        top: 30px;
        left: 20px;
        color: white;
        font-size: 1.5em;
        font-weight: bold;
        display: none;
    }

    .mobile-navbar.active .logo-mobile {
        display: block;
    }

    body {
        padding-bottom: 60px;
        overflow-x: hidden;
        background-color: #121212;
    }

    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-section {
        flex-direction: column;
        height: auto;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .contact-content {
        margin-top: 100px;
        padding: 20px;
    }

    .contact-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .office-info, .contact-details {
        flex: 1;
        margin-bottom: 20px;
    }

    .social-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-icons {
        gap: 12px;
    }

    .feedback-form {
        padding: 20px;
        margin-top: 20px;
    }

    .feedback-form h3 {
        font-size: 0.85rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .upload-btn {
        font-size: 0.8rem;
    }

    .send-btn {
        width: 100%;
        margin-top: 20px;
        padding: 10px;
    }

    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
    .footer-right { flex-direction: column; gap: 15px; }
    footer { padding: 30px 20px; }
}