/* About Section Enhanced Styling */

.about-section {
    background: #000000;
    color: #ffffff;
    position: relative;
}

/* About Content Styling */
.about-content .section-title {
    color: #ffffff;
    position: relative;
    margin-bottom: 24px;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
}

.about-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Enhanced Image Styling */
.about-img-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-img-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Features Styling */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333333;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.about-feature .icon {
    color: #ffffff;
    font-size: 18px;
    min-width: 20px;
}

.about-feature span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* CTA Button */
.about-content .cta-button {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 16px;
}

.about-content .cta-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        gap: 32px;
    }
    
    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        grid-template-columns: 1fr;
        margin: 24px 0;
        padding: 20px;
    }
    
    .about-feature {
        padding: 10px;
    }
}