.as-about-intro {
    padding: 60px 0;
}
.as-about-intro .as-section__header h4 {
    color: #bc8246;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.as-about-intro .as-section__header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}
.as-about-intro p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
.as-about-intro figure {
    border-radius: 8px;
    overflow: hidden;
}
.as-about-intro figcaption {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.as-about-features {
    background-color: #f5f5f5;
    padding: 50px 0;
}
.as-about-features .features-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}
.as-about-features .about-feature-item {
    flex: 1;
    text-align: center;
    padding: 20px 30px;
    position: relative;
}
.as-about-features .about-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #ddd;
}
.as-about-features .about-feature-icon {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.as-about-features .about-feature-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}
.as-about-features .about-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.as-about-section {
    padding: 60px 0;
}
.as-about-section .as-section__header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #8b1a1a;
    margin-bottom: 20px;
    border-bottom: 3px solid #8b1a1a;
    display: inline-block;
    padding-bottom: 8px;
}
.as-about-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
.as-about-section figure {
    border-radius: 8px;
    overflow: hidden;
}
.as-about-section figcaption {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.as-about-cta {
    background-color: #1a1a1a;
    padding: 50px 0;
    text-align: center;
}
.as-about-cta h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}
.as-about-cta .as-btn--cta {
    display: inline-block;
    background-color: #8b1a1a;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid #8b1a1a;
    transition: all 0.3s ease;
    text-decoration: none;
}
.as-about-cta .as-btn--cta:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .as-about-features .features-wrapper {
        flex-wrap: wrap;
    }
    .as-about-features .about-feature-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    .as-about-features .about-feature-item:nth-child(even)::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .as-about-features .about-feature-item {
        flex: 0 0 100%;
    }
    .as-about-features .about-feature-item::after {
        display: none !important;
    }
}
