/* Feature Boxes Fix */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.feature-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-box-content {
    padding: 32px;
}

.feature-box-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-box-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-box-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-box-content a:hover {
    color: #2563eb;
}

.feature-box-content a i {
    transition: transform 0.3s ease;
}

.feature-box-content a:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .feature-box-content {
        padding: 24px;
    }
    
    .feature-box-content h4 {
        font-size: 1.25rem;
    }
    
    .feature-box-content p {
        font-size: 1rem;
    }
}