@media only screen and (max-width: 767px) {
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 70%;
        padding: 0px 0;
        /* border: 1px solid; */
        flex-direction: column;
    }
.logo-text .brand {
    /* font-family: var(--font-display); */
    font-size: .8rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
}
    nav {
        width: 1000px;
        display: flex;
        justify-content: flex-end;
        display: none;
    }

    .hamburger {
        display: flex;
        color: black;
        border: 1px solid #9d9d9d;
        border-radius: 5px;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: #1a1a1a;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--deep-blue);
        z-index: 999;
        flex-direction: column;
        padding: 100px 24px 40px;
        overflow-y: auto;
    }
    .about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.main-sub-d {
    display: flex;
    width: 100%;
    /* gap: 10px; */
    flex-direction: column;
    justify-content: space-between;
}
.subsidy-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    width: 100%;
}
.main-sub-d video {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    margin-top: 20px;
}
.subsidy-table-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    text-align: center;
}
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 40px var(--card-shadow);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 24px;
    text-align: center;
}
.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
    flex-direction: column;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s 0.1s ease both;
    text-align: center;
}.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
    text-align: center;
    animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
    justify-content: center;
}
.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.7s 0.4s ease both;
    justify-content: space-evenly;
    align-items: center;
}
.stat-item {
    text-align: center;
}
}