* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* Sección principal */
.we-are-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Sección "About us" */
#about-us-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #1d3555;
}

.about-us-image,
.history-image {
    flex: 1 1 50%;
    max-width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-us-image img,
.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido del texto */
.about-us-info,
.history-info {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.about-us-info h2,
.history-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: inherit;
}

.about-us-info p,
.history-info p {
    font-size: 1rem;
    line-height: 18px;
}

/* Sección "History" */
#history-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #f3f3f3;
}

.history-info {
    color: #311745;
}

/* Botón opcional */
.about-us-info a,
.history-info a {
    background-color: white;
    color: #0c4c91;
    padding: 12px 24px;
    margin-top: 20px;
    font-size: 1rem;
    text-align: center;
    width: fit-content;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-us-info a:hover,
.history-info a:hover {
    background-color: #404140;
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media screen and (max-width: 768px) {

    .about-us-image,
    .about-us-info,
    .history-info {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .history-image {
        display: none;
    }

    .about-us-info,
    .history-info {
        text-align: center;
        align-items: center;
    }

    .about-us-info h2,
    .history-info h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .about-us-info p,
    .history-info p {
        font-size: 1rem;
        line-height: 18px;
    }

    .about-us-image img,
    .history-image img {
        object-fit: contain;
    }
}