.about {
    width: 100%;
    min-height: 100vh;
    padding: 20px 40px;
    align-content: center;
    margin: 0 auto;
    background: #fff;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
}

.about-content h1 {
    color: #6d68cb;
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    text-align: justify;
    margin-top: 1rem;
    color: rgb(75, 85, 99);
}

.about-content h1, .about-content p { text-align: center; }

.cards {
    padding: 6rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 100%;
    min-width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;

    h2 {
        color: #333;
        margin-bottom: 0.8rem;
    }

    p {
        color: #555;
        font-size: 0.9rem;
    }
}

.icon-border {
    border-radius: 10rem;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    width: 4rem;
    height: 4rem;
    align-content: center;
    margin-bottom: 0.8rem;
    color: #fff;
    align-content: center;
}

.icon-border svg {
    padding-top: 0.5rem;
    width: 40px;
    height: 40px;
}

.mission-content {
    width: 100%;
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    border-radius: 1rem;
    justify-content: space-between;
    background: #fff1f2;
    max-width: 1200px;
    color: #4b5563;
}

.mission-text {
    max-width: 500px;
    align-content: center;
}

.mission-text h2 {
    padding-bottom: 1rem;
}

.mission-text h2, .mission-text p {
    text-align: left;
}

.mission-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    max-width: 700px;
    height: auto;
}

.mission-image img {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

@media (max-width: 900px) {
    .mission-content {
        flex-direction: column;
        align-items: center;
    }

    .mission-image img {
        height: 300px;
    }
}