.about-company-section {
    background: #ffffff;
    padding: 60px 20px;
    margin: 40px 0;
}

.about-company-container {
    max-width: 1200px;
    margin: 0 auto;margin-bottom: 20px;
}

.about-company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-company-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-company-title {
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin: 0;
}

.about-company-description {
    font-size: 1em;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
    margin: 0;
}

.about-company-cta {
    display: inline-block;
    background: #ff5252;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: fit-content;
}

.about-company-cta:hover {
    background: #ff3838;
}

.about-company-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .about-company-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-company-title {
        font-size: 1.8em;
    }

    .about-company-description {
        text-align: left;
    }

    .warehouse-image {
        max-width: 100%;
    }
}
