@media (max-width: 1024px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero-logo-img img {
        width: 280px;
    }
    .logo-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .logo-header p {
        font-size: 13px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        max-height: none;
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 50;
    }
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 6px 10px;
        text-align: left;
    }
    .logo-header {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }
    .logo-icon {
        max-height: 40px;
        width: auto;
        max-width: 120px;
    }
    .logo-header p {
        display: none;
    }
    .nav {
        gap: 6px 10px;
        flex: 1 1 auto;
        justify-content: flex-end;
    }
    .nav a {
        font-size: 12px;
        padding: 4px 6px;
        white-space: nowrap;
    }
    .nav a i {
        margin-right: 4px;
        font-size: 11px;
    }
    .social-header {
        font-size: 16px;
        gap: 8px;
        flex: 0 0 auto;
    }
    .hero {
        padding: 30px 0 25px;
    }
    .hero-grid {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .hero-text {
        flex: 1 1 auto;
        width: 100%;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero p {
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-logo {
        flex: 1 1 auto;
        width: 100%;
    }
    .hero-logo-img {
        padding: 16px 20px;
        border-radius: 40px 16px 40px 16px;
    }
    .hero-logo-img img {
        width: 200px;
        height: auto;
    }
    .hero-badge {
        display: inline-block;
        margin: 4px 4px !important;
        font-size: 13px;
        padding: 6px 16px;
    }
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 24px;
        text-align: center;
    }
    .section-sub {
        font-size: 16px;
        text-align: center;
        margin-bottom: 24px;
    }
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .card {
        padding: 20px 18px;
        border-radius: 18px;
        text-align: center;
    }
    .card h3 {
        font-size: 18px;
    }
    .card p {
        font-size: 14px;
    }
    .card ul {
        list-style: none;
        padding: 0;
        text-align: left;
        display: inline-block;
    }
    .card ul li {
        font-size: 14px;
        margin-left: 0;
        padding-left: 20px;
        position: relative;
    }
    .card ul li::before {
        content: "•";
        color: #b48b7a;
        position: absolute;
        left: 0;
    }
    .team-slider {
        gap: 16px;
        padding: 4px 2px 12px;
    }
    .team-card {
        flex: 0 0 180px;
        flex-direction: column;
        padding: 16px 12px 20px;
        border-radius: 24px 12px 24px 12px;
    }
    .team-avatar {
        width: 140px;
        height: 180px;
        font-size: 32px;
    }
    .team-data {
        width: 100%;
        height: auto;
        min-height: 100px;
    }
    .team-card h4 {
        font-size: 16px;
    }
    .team-role {
        font-size: 13px;
    }
    .team-desc {
        font-size: 12px;
    }
    .footer {
        padding: 24px 0 0;
        margin-top: 10px;
    }
    .footer-inner {
        gap: 20px;
    }
    .footer-logos {
        gap: 20px;
        padding-bottom: 16px;
    }
    .footer-logo-img {
        max-height: 50px;
    }
    .footer-support {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 18px;
        font-size: 13px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 12px;
        gap: 10px;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    .footer-nav a {
        font-size: 13px;
    }
    .logo-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-card {
        min-width: 100%;
        text-align: center;
    }
    .footer-card:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-card img.logo-icon {
        height: 160px !important;
        width: auto;
    }
    .footer-card p,
    .footer-card h3 {
        text-align: center;
    }
    .footer .nav {
        gap: 10px 14px;
    }
    .footer .nav a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .header {
        padding: 6px 0;
    }
    .header-inner {
        gap: 4px 8px;
    }
    .logo-icon {
        max-height: 32px;
        max-width: 90px;
    }
    .nav {
        gap: 4px 6px;
    }
    .nav a {
        font-size: 11px;
        padding: 2px 4px;
    }
    .nav a i {
        display: none;
    }
    .social-header {
        font-size: 14px;
        gap: 6px;
    }
    .hero h1 {
        font-size: 22px;
    }
    .hero p {
        font-size: 14px;
    }
    .hero-logo-img img {
        width: 160px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    .section-title {
        font-size: 20px;
    }
    .section-sub {
        font-size: 14px;
    }
    .card {
        padding: 16px 14px;
    }
    .card h3 {
        font-size: 16px;
    }
    .card p,
    .card ul li {
        font-size: 13px;
    }
    .team-card {
        flex: 0 0 150px;
        padding: 12px 8px 16px;
    }
    .team-avatar {
        width: 110px;
        height: 140px;
        font-size: 28px;
    }
    .team-card h4 {
        font-size: 14px;
    }
    .team-role {
        font-size: 12px;
    }
    .team-desc {
        font-size: 11px;
    }
    .footer-card img.logo-icon {
        height: 120px !important;
    }
    .footer-card p,
    .footer-card h3 {
        font-size: 13px;
    }
    .footer .nav a {
        font-size: 12px;
    }
}