/**
 * About Block Styles
 */

/* HOLAAAA */


.about-section {
    background-color: #3154A5;
    padding: 80px 0;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column */
.about-left {
    flex: 1;
    max-width: 55%;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: normal;
}

.about-content {
    font-family: var(--font-content);
    font-size: 16px;
    color: var(--color-white);
    line-height: 32px;
    margin-bottom: 30px;
}

.about-content p {
    margin: 0 0 15px 0;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-ctas {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

/* Right Column */
.about-right {
    flex: 1;
    max-width: 45%;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 4px 0 rgba(34, 56, 107, 0.45);
}

/* Stats Box */
.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-25%);
    background-color: var(--color-primary-red);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-description {
    font-family: var(--font-content);
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-left,
    .about-right {
        max-width: 100%;
    }

    .about-image-wrapper {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-ctas .cta-primary {
        width: 100%;
    }

    .about-stats {
        padding: 15px 20px;
        gap: 15px;
    }

    .stat-title {
        font-size: 24px;
    }

    .stat-description {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateY(50%);
    }

    .stat-item {
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
    }
}
.about-section .about-left .about-content p a { color: #EB272D; }