/* About Us title */
.about-title {
    margin-bottom: 40px;
}

.about-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.about-title h2 span {
    color: #ddbd84;
}

.about-title h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Company introduction */
.company-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.company-intro .intro-text {
    flex: 1;
    min-width: 300px;
}

.company-intro .intro-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.company-intro .intro-image {
    flex: 0 0 300px;
}

.company-intro .intro-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

/* Business operations */
.business-operations {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.business-operations .operations-image {
    flex: 0 0 400px;
    max-width: 100%;
}

.business-operations .operations-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-operations .operations-text {
    flex: 1;
    min-width: 300px;
}

.business-operations .operations-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.business-operations .operations-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* 2023 timeline */
.timeline-2023 {
    margin-bottom: 0;
}

.timeline-2023 h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.timeline-2023 p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.timeline-2023 p:last-child {
    margin-bottom: 0;
}

/* Three cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #ddbd84;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 24px;
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    line-height: 1.6;
    color: #666;
}

/* What Sets Us Apart */
.what-sets-us-apart {
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
}

.what-sets-us-apart h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.what-sets-us-apart h2 span {
    color: #ddbd84;
}

.what-sets-us-apart .sets-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.what-sets-us-apart .set-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.what-sets-us-apart .set-item p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Yellow dashed line */
.yellow-dashed-line {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.yellow-dashed-line .line {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(to right, #ddbd84 0px, #ddbd84 10px, transparent 10px, transparent 20px);
}

/* Factory images */
.factory-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.factory-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Container padding */
.about-container {
    padding: 40px;
    background: #fff;
    margin-bottom: 60px;
}

/* Banner section */
.banner-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin-top: 60px;
}

.banner-banner .banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-banner .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-banner .banner-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .banner-section {
        padding: 20px 0;
    }
    .banner-home {
        background-position: 50% 50% !important;
    }
    .company-intro{
        gap: 0px!important;
        margin-bottom: 20px;
    }
    .company-intro .intro-image{
        flex: 0 0 100%;
    }
    .factory-images {
        grid-template-columns: 1fr;
    }
    .factory-images img {
        height: auto;
        object-fit: contain;
    }
}