.about{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
    align-items:center;
}

.about-text h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.about-text p{
    line-height:1.8;
    margin-bottom:15px;
    color:#555;
}

.info-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.info-box h3{
    margin-bottom:20px;
    color:#00bfff;
}

.info-item{
    margin-bottom:18px;
    line-height:1.7;
}

.contacto-correos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.correo-btn{
    padding:15px 28px;
    background:#2563eb;
    color:#fff;
    border-radius:14px;
    transition:0.3s;
    text-align:center;
}

.correo-btn:hover{
    background:#1d4ed8;
}

.contact-section{
    background:#fff;
}

.contact-container{
    max-width:700px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-title{
    text-align:center;
    margin-bottom:30px;
}

.contact-title h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

.input-box{
    margin-bottom:20px;
}

.input-box input,
.input-box textarea{
    width:100%;
    padding:16px;
    border:none;
    background:#f1f3f6;
    border-radius:15px;
    outline:none;
}

.contact-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:#00bfff;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
}