/* About Us page */

/* Hero */
.au-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 56px 24px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url('../images/about/about-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.au-hero-inner {
    max-width: 820px;
}

.au-hero h1 {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
}

.au-hero-divider {
    width: 50px;
    height: 3px;
    margin: 20px auto;
    background-color: #da090e;
}

.au-hero p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Who Are We / What Do We Do */
.au-intro {
    padding: 64px 0;
    background-color: #ffffff;
}

.au-intro-row {
    display: flex;
    gap: 64px;
}

.au-intro-col {
    flex: 1 1 0;
}

.au-intro-heading {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.au-intro-bar {
    flex: 0 0 auto;
    width: 4px;
    height: 30px;
    margin-right: 16px;
    background-color: #da090e;
}

.au-intro-heading h2 {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #101010;
}

.au-intro-col p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Trusted partner banner */
.au-banner {
    display: flex;
    align-items: center;
    min-height: 260px;
    padding: 40px 56px;
    margin-bottom: 64px;
    background-image: linear-gradient(to right, rgba(191, 16, 18, 0.96) 0%, rgba(191, 16, 18, 0.88) 28%, rgba(150, 20, 20, 0.35) 62%, rgba(120, 20, 20, 0.12) 100%), url('../images/about/about-banner.jpg');
    background-size: cover;
    background-position: center;
}

.au-banner h2 {
    margin: 0 0 16px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
}

.au-banner p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

/* Our Guarantees */
.au-guarantees {
    padding: 8px 0 72px;
    background-color: #ffffff;
}

.au-section-heading {
    margin: 0 0 12px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #101010;
    text-align: center;
}

.au-section-divider {
    width: 50px;
    height: 3px;
    margin: 0 auto 24px;
    background-color: #da090e;
}

.au-section-subtitle {
    max-width: 700px;
    margin: 0 auto 48px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b6b6b;
    text-align: center;
}

.au-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.au-guarantee-card {
    padding: 32px;
    border: 1px solid #e5e5e3;
    border-radius: 10px;
}

.au-guarantee-icon {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1;
}

.au-guarantee-card h3 {
    margin: 0 0 8px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #101010;
}

.au-guarantee-card p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6b6b;
}

/* Responsive */
@media (max-width: 991px) {
    .au-intro-row {
        flex-direction: column;
        gap: 40px;
    }

    .au-banner {
        flex-wrap: wrap;
    }

    .au-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .au-hero h1 {
        font-size: 32px;
    }

    .au-banner h2 {
        font-size: 28px;
    }

    .au-section-heading {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .au-hero {
        min-height: 280px;
        padding: 40px 20px;
    }

    .au-hero h1 {
        font-size: 26px;
    }

    .au-hero p {
        font-size: 15px;
    }

    .au-intro {
        padding: 48px 0;
    }

    .au-banner {
        min-height: auto;
        padding: 32px 24px;
        margin-bottom: 48px;
    }

    .au-banner h2 {
        font-size: 22px;
    }

    .au-guarantees {
        padding: 0 0 48px;
    }

    .au-guarantees-grid {
        grid-template-columns: 1fr;
    }

    .au-section-heading {
        font-size: 24px;
    }

    .au-section-subtitle {
        font-size: 15px;
    }
}
