/* About Section */
#about {
    background: #f8f9fa;
    padding: 60px 0;
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.about-card h2 {
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.about-card h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007BFF;
    margin: 10px auto;
}

.lead {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background: white;
}

.feature-item h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Feature Animations */
.feature-item:nth-child(1) { animation: itemFade 0.8s forwards 0.3s; }
.feature-item:nth-child(2) { animation: itemFade 0.8s forwards 0.6s; }
.feature-item:nth-child(3) { animation: itemFade 0.8s forwards 0.9s; }

@keyframes itemFade {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 30px;
        transform: translateY(10px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
    }
}