/* About Australia Banner */
.about-aus-banner {
    background: url('/images/bg/bg-aboutaus.webp') center bottom/cover no-repeat;
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
    height: 60vh;
    background-position-y: 80%;
}

.about-aus-banner::before {
    content: '';
    position: absolute;
    inset: 0;
}

.about-aus-banner-content {
    position: relative;
    z-index: 2;
}

.about-aus-banner-title {
    color: var(--aip-white);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
}

.about-aus-banner-title span {
    font-size: 80px;
}

/* Main Content */
.about-aus-content {
    padding: 50px 0 40px;
    background: var(--aip-white);
}

.about-aus-body {
    margin: 0 auto;
}

.about-aus-intro {
    font-size: 16px;
    line-height: 1.85;
    color: var(--aip-text-content);
    margin-bottom: 35px;
}

.about-aus-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--aip-text-title);
    margin-bottom: 16px;
    margin-top: 30px;
}

.about-aus-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--aip-text-content);
    margin-bottom: 12px;
}

/* Service Cards */
.about-aus-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.about-aus-service-card {
    border: 1px solid var(--aip-primary-border);
    border-radius: 12px;
    padding: 28px 24px;
    background: var(--aip-white);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-aus-service-card:hover {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.about-aus-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--aip-text-content);
    margin-bottom: 10px;
    line-height: 1.4;
}

.about-aus-service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--aip-text-content);
}

/* Tablet Responsive */
@media (max-width: 1023px) {
    .about-aus-banner {
        height: 45vh;
        padding: 120px 0 80px;
        background-position-y: center;
    }

    .about-aus-banner-title {
        font-size: 40px;
    }

    .about-aus-banner-title span {
        font-size: 60px;
    }

    .about-aus-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .about-aus-banner {
        height: auto;
        min-height: 250px;
        padding: 80px 0 60px;
        background-position-y: center;
    }

    .about-aus-banner-title {
        font-size: 24px;
    }

    .about-aus-banner-title span {
        font-size: 40px;
    }

    .about-aus-content {
        padding: 30px 0 20px;
    }

    .about-aus-intro,
    .about-aus-text {
        font-size: 16px;
    }

    .about-aus-heading {
        font-size: 20px;
    }

    .about-aus-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-aus-service-card {
        padding: 20px 18px;
    }

    .about-aus-service-title {
        font-size: 20px;
    }

    .about-aus-service-desc {
        font-size: 16px;
    }
}
