/* --- About Page White Theme --- */

/* Section Padding and Container */
.about-section-padding {
    padding: 60px 0;
    /* background: #fff; */
}
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.about-section-title h2 {
    color: #fc5821;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.about-section-title p {
    color: #222;
    font-size: 1.1em;
    margin-bottom: 30px;
    font-family: 'Rubik', sans-serif;
}

/* --- Intro Section --- */
.about-intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    /* background: #fff; */
}
.about-intro-text {
    flex: 1 1 350px;
}
.about-intro-text h2 {
    color: #fc5821;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 18px;
}
.about-intro-text p {
    color: #222;
    font-size: 1.08em;
    margin-bottom: 14px;
    line-height: 1.7;
}
.about-intro-image {
    flex: 1 1 300px;
    text-align: center;
}
.about-intro-image img {
    max-width: 490px;
    min-width: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* --- Values Section --- */
.about-values-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.about-value-card {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 28px 22px;
    flex: 1 1 220px;
    min-width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    border-bottom: 3px solid #fc5821;
}
.about-value-icon {
    font-size: 2em;
    color: #fc5821;
    margin-bottom: 12px;
}
.about-value-title {
    color: #fc5821;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-value-text {
    color: #222;
    font-size: 1em;
    line-height: 1.6;
}

/* --- Promise Section --- */
.about-promise-content {
    margin-top: 30px;
}
.about-promise-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    background: #f7f7f7;
    border-radius: 5px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    /* max-width: 700px; */
    margin: 0 auto;
}
.about-promise-item {
    background: #fc5821;
    border-radius: 8px;
    padding: 14px 18px;
    min-width: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-promise-icon {
    font-size: 1.7em;
    color: #fff;
    flex-shrink: 0;
}
.about-promise-text {
    color: #fff;
    font-size: 1em;
    margin: 0;
}

/* --- Wood Types Section --- */
.about-wood-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.about-wood-card {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 280px;
    min-width: 240px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.about-wood-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #fc5821;
}
.about-wood-content {
    padding: 20px 16px;
}
.about-wood-title {
    color: #fc5821;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 8px;
}
.about-wood-text {
    color: #222;
    font-size: 1em;
    line-height: 1.6;
}

/* --- CTA Section --- */
.about-cta {
    background: linear-gradient(90deg, #fc5821 0%, #f7f7f7 100%);
    padding: 60px 0;
    text-align: center;
}
.about-cta-content h2 {
    color: #222;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-cta-content p {
    color: #222;
    font-size: 1.1em;
    margin-bottom: 24px;
}
.about-cta-button {
    background: #fc5821;
    color: #fff;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 6px;
    font-size: 1.1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
    display: inline-block;
}
.about-cta-button:hover {
    background: #d94c0b;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .about-intro-content {
        flex-direction: column;
        gap: 24px;
    }
    .about-values-grid,
    .about-wood-grid {
        flex-direction: column;
        gap: 18px;
    }
    .about-wood-image img {
        height: 140px;
    }
    .about-promise-list {
        padding: 24px 10px;
    }
}
@media (max-width: 600px) {
    .about-section-title h2,
    .about-intro-text h2,
    .about-cta-content h2 {
        font-size: 1.3em;
    }
    .about-section-padding {
        padding: 30px 0;
    }
    .about-cta {
        padding: 30px 0;
    }
}