/* About Section */
.about {
    padding: 6rem 0 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.about-content {
    margin-top: 3rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: rgba(45, 52, 54, 0.95); /* Darker text for better readability */
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05),
                0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1),
                0 4px 6px rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    background: var(--gradient-primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-content p {
    color: rgba(45, 52, 54, 0.95); /* Darker text for better readability */
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-line {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .feature-item {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0 1rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        padding: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 1.3rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }
}
