body {
    background-color: #f8f9fa;
}

h1 {
    font-family: 'Georgia', serif;
    color: #1d1d1d;
}

img {
    width: 100%;
}

.lead {
    color: #6c757d;
}

.hero img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.navbar .nav-link {
    font-weight: 500;
    color: #000;
}

.navbar .nav-link:hover {
    color: #007bff;
}

.btn-lg {
    background-color: #343a40;
    border-color: #343a40;
}

.main-text {
    padding-left: 12%;
    padding-right: 12%;
}

.areas {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.areas h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: left;
    padding: 20px;
    margin-bottom: 20px;
    flex-direction: row;
}

.card img {
    width: 65px;
    height: auto;
    margin-bottom: 15px;
}

.card-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.card-icon {}

.card-description {
    padding-left: 5%;
}

#mision-vision {
    background-color: #383838;
    color: white;
}

#mision-vision h1,
#mimsion-vision h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
}

#mision-vision h1 {
    font-size: 5em;
}

#mision-vision h2 {
    font-size: 3em;
}

.container-mision,
.container-vision {
    text-align: center;
}

#mision-vision .text-container {
    text-align: left;
    width: 50em;
}

.text-container,
.img-container {
    margin-top: 60px;
    margin-bottom: 60px;
}

.img-container img {
    max-width: 500px;
}

.plataformas {
    min-height: 300px;
    padding: 50px 0;
    background-color: #f9f9f9;
    min-height: 50vh; 
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centrado vertical */
    justify-content: center; /* Centrado horizontal y vertical */
}

.plataformas h1 {
    font-size: 3.0rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.plataformas h2 {
    font-size: 2.2rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    margin-bottom: 35px;
}

.widht-70-per {
    width: 70%;
}

.margin-10 {
    margin-bottom: 10px;
}

/* Espacio para la imagen de fondo */
.chess-section {
    background-image: url('img/ajedrez-escolar.png');
    /* Aquí debes agregar la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    filter: brightness(0.9);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centrado vertical */
    justify-content: center; /* Centrado horizontal y vertical */
}

.chess-title {
    color: #fff;
    font-family: 'Georgia', serif;
    /* Estilo de fuente similar */
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Sombra */
}

.chess-subtitle {
    color: #fff;
    font-family: 'Arial', sans-serif;
    /* Estilo de fuente similar */
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Sombra */
}

.chess-list {
    list-style: none;
    padding-left: 0;
    font-family: 'Arial', sans-serif;
    /* Estilo de fuente similar */
    font-size: 1.1rem;
}

.chess-list-item {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    cursor: pointer;
    background: white;
    color: black;
    border-radius: 12px;
}

/* Espacio para el icono del caballito */
.chess-list-item::before {
    content: '';
    /* Aquí debes agregar el icono de tu caballito */
    background-image: url('img/caballito.png');
    /* Ruta del ícono */
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 3px;
}

.chess-list-item:hover {
    text-decoration: underline;
}
.foundation-section {
    background-image: url('img/footer.png'); /* Aquí debes agregar la ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    font-family: 'Georgia', serif; /* Tipografía similar */
    min-height: 100vh; /* Ocupa al menos el 75% del alto de la pantalla */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .foundation-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    justify-content: center; /* Centra verticalmente */
    flex-grow: 1; /* Hace que el contenido ocupe el espacio disponible y se centre verticalmente */
    text-align: center; /* Centra el texto */
  }
  
  .foundation-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
  }
  
  .foundation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif; /* Tipografía similar */
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .email-icon img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  
  .email-text {
    font-size: 1.1rem;
    text-align: left;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-text {
    text-align: center;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 15px;
  }
  