/* contact.css */
.section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0fdf4;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 600px;
    margin: 0 auto;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(5, 150, 105, 0.1);
}

.about-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #334155;
    line-height: 1.7;
}

.about-card p strong {
    color: #059669;
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}

.text-center {
    margin-bottom:30px;
    max-width:800px;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .about-card {
        padding: 1.8rem;
    }
    .about-card p {
        font-size: 1rem;
    }
    .about-card p strong {
        min-width: 80px;
    }
}