.elementor-416 .elementor-element.elementor-element-48edb0d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-416 .elementor-element.elementor-element-0c2ede2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-416 .elementor-element.elementor-element-ca6cf32{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-416 .elementor-element.elementor-element-ca6cf32 iframe{height:360px;}.elementor-416 .elementor-element.elementor-element-817ba26{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-416 .elementor-element.elementor-element-48edb0d{--content-width:1270px;}}/* Start custom CSS for html, class: .elementor-element-de6423a */.about-us-container {
    max-width: 1140px;
    margin: 40px auto;
    padding: 20px;
}

/* --- Phần giới thiệu chung --- */
.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

/* Dấu gạch ngang dưới tiêu đề */
.about-intro h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d9534f; /* Màu đỏ của icon */
}

.about-intro p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 15px;
    color: #222;
}

/* --- Lưới các thế mạnh (Features) --- */
.features-grid {
    display: grid;
    /* Tạo 2 cột bằng nhau */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; /* Khoảng cách giữa các item */
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0; /* Giữ kích thước icon ổn định */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #d9534f; /* Màu đỏ */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-right: 25px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* --- Responsive cho mobile --- */
@media (max-width: 992px) {
    /* Chuyển thành 1 cột trên tablet */
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro h1 {
        font-size: 28px;
    }
    .feature-item {
        flex-direction: column; /* Icon và text xếp chồng lên nhau */
        text-align: center;
    }
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9d7302d *//* --- General Styling --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Font Roboto rất giống với font trong hình */
    font-family: 'Roboto', Arial, sans-serif;
}

/* --- Promo Section Styling --- */
.promo-section {
    /* Sử dụng background từ link bạn cung cấp */
    background-image: url('https://isuzu.maugiaodien.com/wp-content/uploads/2019/10/gia-xe-tai-isuzu.jpg');
    background-repeat: repeat;
    padding: 30px 20px;
    width: 100%;
}

.promo-container {
    max-width: 1240px; /* Giữ nguyên max-width từ yêu cầu trước */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* --- Cột 1: Hộp quà --- */
.promo-gift {
    flex-shrink: 0; /* Không co lại khi không đủ chỗ */
}

/* --- Cột 2: Form --- */
.promo-form {
    flex-grow: 1; /* Cho phép form co giãn chiếm không gian */
    text-align: center;
    padding: 0 20px;
}

.promo-form h2 {
    color: red; /* Màu đỏ của tiêu đề */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-form .subtitle {
    color: #333; /* Màu chữ phụ */
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.form-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.form-inputs-grid input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 2px; /* Bo góc rất nhẹ */
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
}

.form-inputs-grid input::placeholder {
    color: #999;
}

.submit-button {
    background-color: #0d1b4c; /* Màu xanh đậm của button */
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a2e7a;
}

/* --- Cột 3: Hotline --- */
.promo-hotline {
    text-align: center;
    flex-shrink: 0;
}

.promo-hotline .hotline-title {
    color: #a94442; /* Màu đỏ sẫm của chữ Hotline */
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.promo-hotline .hotline-number {
    color: red; /* Màu đỏ của số điện thoại */
    font-size: 36px;
    font-weight: 700;
    line-height: 1; /* Giảm khoảng cách dòng cho số */
}

/* --- Responsive cho màn hình nhỏ --- */
@media (max-width: 1024px) {
    .promo-container {
        flex-direction: column;
        gap: 30px;
    }
    .promo-form {
        width: 100%;
        max-width: 500px; /* Giới hạn chiều rộng form trên tablet */
        padding: 0;
    }
}

@media (max-width: 480px) {
    .form-inputs-grid {
        grid-template-columns: 1fr; /* 1 cột trên mobile */
    }
}/* End custom CSS */