/* About Section */
.about_section_wrapper {
    width: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: poppins, sans-serif;
}

.about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.about_text_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_main_title {
    font-size: 42px;
    font-weight: 700;
    color: #191919;
    margin: 0;
    line-height: 1.2;
}

.about_subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.about_description {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin: 0;
}

.about_highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.highlight_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background-color: rgba(224, 83, 6, 0.05);
    border-radius: 6px;
    border-left: 4px solid #e05306;
}

.highlight_icon {
    color: #e05306;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
}

.highlight_text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

.about_image_container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about_image_container:hover img {
    transform: scale(1.05);
}

/* Mission, Vision, Values Section */
.about_values_section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    font-family: poppins, sans-serif;
}

.about_values_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values_section_title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 60px;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value_card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #e05306;
}

.value_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value_icon {
    font-size: 50px;
    color: #e05306;
    margin-bottom: 20px;
}

.value_title {
    font-size: 24px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 15px;
}

.value_description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about_content_wrapper {
        gap: 40px;
    }

    .about_main_title {
        font-size: 36px;
    }
}

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

    .about_content_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about_text_content {
        order: 2;
    }

    .about_image_container {
        order: 1;
    }

    .about_main_title {
        font-size: 32px;
    }

    .about_subtitle {
        font-size: 15px;
    }

    .values_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values_section_title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .value_card {
        padding: 30px;
    }

    .value_icon {
        font-size: 40px;
    }

    .value_title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about_section_wrapper {
        padding: 40px 0;
    }

    .about_container {
        padding: 0 15px;
    }

    .about_content_wrapper {
        gap: 30px;
    }

    .about_main_title {
        font-size: 26px;
    }

    .about_subtitle {
        font-size: 14px;
    }

    .highlight_item {
        padding: 10px;
        gap: 10px;
    }

    .highlight_text {
        font-size: 13px;
    }

    .value_card {
        padding: 20px;
    }

    .value_icon {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .value_title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .value_description {
        font-size: 14px;
    }
}
