.about-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

.about-container h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 6px solid #e63946;
    padding-left: 15px;
    color: #1a1a1a;
}

.about-container h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f1f1f;
    font-weight: 600;
}

.about-container p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.mision-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.card {
    flex: 1 1 45%;
    background: linear-gradient(to bottom right, #fdfdfd, #f4f4f4);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.valores {
    margin-top: 50px;
}

.valores h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #457b9d;
    font-weight: 600;
}

.valores ul {
    list-style: none;
    padding: 0;
}

.valores li {
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.05rem;
}

.valores li strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1d3557;
}
