/* Redesigned About Section Styles */
.about-section-redesigned {
    background-image: url('../images/about-backgrounds.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.about-section-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    /* Light overlay for readability */
    z-index: 1;
}

.about-section-redesigned .container {
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: #b4926d;
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.about-description-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid-clean {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #b4926d;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}

.feature-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-value {
    font-size: 1rem;
    font-weight: 700;
    color: #b4926d;
    line-height: 1.4;
}

/* Clean Download Section */
.section-download-clean {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: inline-block;
    max-width: 800px;
    width: 100%;
    border: 1px solid #e5e7eb;
}

.download-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-icon-area .phone-img {
    height: 60px;
    width: auto;
}

.download-info-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    text-align: left;
}

.brochure-icon {
    font-size: 2rem;
    color: #b4926d;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-text span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.download-text span.sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.download-btn-clean {
    background-color: #1f2937;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn-clean:hover {
    background-color: #b4926d;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section-redesigned {
        padding: 4rem 0;
    }

    .about-main-title {
        font-size: 1.5rem;
    }

    .features-grid-clean {
        gap: 1.5rem;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }

    .download-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .download-info-area {
        flex-direction: column;
        text-align: center;
    }
}