/* ===== อัปเกรดหน้า About Us ให้ดูมีมิติและพรีเมียมขึ้น ===== */
.about-premium-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-title {
    color: #5c3a21 !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.about-subtitle {
    color: #7a4524;
    font-size: 18px;
    margin-bottom: 20px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: #cfa276;
    margin: 0 auto;
}

.about-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

/* ตกแต่งกล่องข้อความฝั่งซ้าย */
.about-text-column {
    flex: 1;
    min-width: 300px;
    background-color: #fdfaf6; /* พื้นหลังครีมอ่อน */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2d1c3;
}

.lead-text {
    font-size: 18px;
    color: #5c3a21;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-quote {
    border-left: 4px solid #cfa276;
    padding-left: 20px;
    margin: 30px 0 0 0;
    font-size: 18px;
    font-style: italic;
    color: #7a4524;
    line-height: 1.6;
}

/* ตกแต่งการ์ดฝั่งขวา */
.about-features-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2d1c3;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* เอฟเฟกต์ลอยขึ้น */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #cfa276;
}

.feature-icon {
    font-size: 36px;
    margin-right: 20px;
    line-height: 1;
}

.feature-text h4 {
    color: #5c3a21;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}