/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--header-background);
    border-radius: 0.5rem;
    margin-bottom: 2rem;

    h2 {
        margin-bottom: 1rem;
    }

    p {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Our Story Section */
.our-story {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    p {
        max-width: 800px;
        margin: 0 auto 1rem;
    }
}

/* Our Values Section */
.our-values {
    margin-bottom: 2rem;

    h3 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;

    @media screen and (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--footer-background);
    color: var(--footer-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    h4 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
}

/* About CTA Section */
.about-cta {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--header-background);
    border-radius: 0.5rem;

    h3 {
        margin-bottom: 1rem;
    }

    p {
        margin-bottom: 1.5rem;
    }

    .button {
        display: inline-block;
    }
}