.section-title {
    font-size: 45px;
    color: #002244;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

.container-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.box {
    /*background-color: #fff;*/
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.img-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Layout horizontal en pantallas medianas y grandes */
@media (min-width: 768px) {
    .container-box {
        flex-direction: row;
        align-items: stretch;
    }

    .left-box {
        flex: 4;
    }

    .center-box,
    .right-box {
        flex: 1.5;
    }

    .special-box{
        flex: 1;
    }
}

/* Alineación del texto */
.center-box p,
.right-box p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.3;
}

h2 {
    margin-top: 0;
}