.about-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #000000;
    line-height: 1.6;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-box {
    width: 250px;
    padding: 10px;
}

.feature-icon {
    margin-bottom: 12px;
}

.feature-title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

.more-btn-wrapper {
    margin-top: 20px;
}

.more-btn {
    background-color: #7b5d3b;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.more-btn:hover {
    background-color: #5d452c;
}