* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Roboto', sans-serif;
}
  
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh;
}
  
.icono{
    font-family: Georgia, serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    padding: 0 30px 0 0;
}
  
.icono p {
    color: #207e05;
    font-size: 35px;
    padding: 20px;
}
  
.menu-principal, .icono {
    margin: 0 0 0 300px;
}
        
  
.menu-principal a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    background-color: #e0e177;
    padding: 7px;
    border-radius: 8px;
    font-family: 'Times New Roman', Times, serif;
}
  
.menu-principal a img {
    margin-left: 8px; 
}
  
.menu-principal a:hover {
    background-color: #f5f86e;
    color: #000000;
}
  
.submenu {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 15px;
    border-bottom: 2px solid #ccc;
    position: static;
    top: 0;
    width: 100%;
    z-index: 1000;
}
  
.submenu a {
    margin: 0 60px;
    text-decoration: none;
    color: #093776;
    font-weight: bold;
    font-size: 20px;
}
  
.submenu a:hover {
    color: #0936769c;
}
  
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.section {
    padding: 50px 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.preescolar {
    background-color: #e3f2fd;
}
.primaria {
    background-color: #e8f5e9;
}
.secundaria { 
    background-color: #eee5ff;
}
.bachillerato {
    background-color: #fff3e0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #343a40;
}
.section-description {
    font-size: 1.1rem;
    color: #495057;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}
  
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
  
.footer-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  
.social-icons {
    display: flex;
    justify-content: center;
    width: 100%; 
    margin-bottom: 20px;
}
  
.social-icons a {
    margin: 40px 100px 20px 100px;
    display: inline-block;
}
  
.social-icons img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
  
.contact-info {
    display: flex;
    align-items: center;
}
  
.logo-container {
    margin-right: 20px;
}
  
.logo-container img {
    width: 180px; 
    height: auto;
    margin: 0 0 0 70px;
}
  
.emails h6 {
    margin: 15px 0 25px 10px;
}
  
.emails p {
    margin: 15px 0 25px 10px;
}
  
.footer-content-right {
    text-align: right;
}
    
.footer-content-right p {
    margin: 10px 190px 0 0;
}
  
.footer-content-right h5 {
    margin: 40px 500px 0 0;
}
    
.footer-bottom {
    text-align: center;
     margin-top: 20px;
}