.about-section {
    padding: 5rem 0;
    background: white;
}

.about-header {
    text-align: center;
    margin-bottom: 3.125rem;
}

.company-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.625rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.about-content {
    display: flex;
    gap: 3.125rem;
    align-items: center;
    margin-bottom: 3.75rem;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.about-image {
    flex: 1;
    border-radius: 0.938rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
    margin-top: 3.125rem;
}

.value-card {
    background: var(--light-bg);
    padding: 1.875rem;
    border-radius: 0.938rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 5rem;
    height: 5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon i {
    color: white;
    font-size: 2.188rem;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.938rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 61.875rem) { /* 992px */
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        max-width: 37.5rem;
        margin: 0 auto;
    }
}

@media (max-width: 48rem) { /* 768px */
    .about-title {
        font-size: 2rem;
    }

    .value-card {
        padding: 1.25rem;
    }
}

@media (max-width: 30rem) { /* 480px */
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .value-icon {
        width: 4rem;
        height: 4rem;
    }

    .value-icon i {
        font-size: 1.75rem;
    }
}