body {
    font-family: 'Nunito', sans-serif;
}
.masthead {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/school-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
}
.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/students-playground.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
}
.btn-primary {
    background-color: #3d6db5;
    border-color: #3d6db5;
}
.btn-primary:hover {
    background-color: #2d5a9a;
    border-color: #2d5a9a;
}
.text-primary {
    color: #3d6db5 !important;
}
.form-control:focus {
    border-color: #3d6db5;
    box-shadow: 0 0 0 0.25rem rgba(61, 109, 181, 0.25);
}
.navbar-brand {
    font-weight: 700;
}
.features-icons-icon i {
    color: #3d6db5;
}
.showcase-img {
    min-height: 25rem;
}
.card {
    border-radius: 10px;
}
.form-group {
    margin-bottom: 1rem;
}
.form-label {
    font-weight: 600;
    color: #444;
}
.section-heading {
    font-weight: 700;
    color: #3d6db5;
}
.testimonial-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Estilos para el modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    padding: 0;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background-color: #6D001C;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 30px 25px;
}

.modal-icon {
    text-align: center;
    margin-bottom: 20px;
}

.modal-icon svg {
    width: 70px;
    height: 70px;
    color: #6D001C;
}

.modal-title {
    text-align: center;
    color: #6D001C;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-message {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.modal-info {
    background-color: #f8f8f8;
    border-left: 4px solid #6D001C;
    padding: 15px;
    margin: 20px 0;
    font-size: 15px;
}

.modal-footer {
    text-align: center;
    padding: 0 25px 25px 25px;
}

.modal-btn {
    background-color: #6D001C;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-btn:hover {
    background-color: #590018;
}

/* Logotipo simplificado del colegio */
.college-logo {
    text-align: center;
    margin-bottom: 15px;
}

.college-logo h3 {
    font-size: 18px;
    color: #6D001C;
    margin: 0;
    letter-spacing: 1px;
}
.form-group { margin-bottom: 0.75rem; }
.form-label { margin-bottom: 0.3rem; font-size: 0.9rem; }
.invalid-feedback { font-size: 0.75rem; }
.compact-form { padding: 1rem; max-width: 1000px; margin: 0 auto; }