* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: #fff;
      color: #000;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .logo-banner {
      background-color: #fff;
      text-align: center;
      padding: 1.5rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .logo {
      max-width: 200px;
      height: auto;
    }

    header {
      background: linear-gradient(to right, #ff0000, #000);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .about-section {
      background-color: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      max-width: 800px;
      margin: 3rem auto;
    }

    .about-section h2 {
      color: #ff0000;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .about-section p {
      color: #333;
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      text-align: justify;
    }

    .about-section .btn-conocenos {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.8rem 2rem;
      background-color: #000;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .about-section .btn-conocenos:hover {
      background-color: #333;
      transform: scale(1.05);
    }

    .stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .stat {
      background-color: #000;
      color: white;
      padding: 1.5rem;
      border-radius: 8px;
      min-width: 120px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat:hover {
      transform: translateY(-5px);
    }

    .stat h3 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .stat p {
      font-size: 1rem;
      color: #fff;
      text-align: center;
    }

    .call-to-action {
      text-align: center;
      padding: 2rem;
      max-width: 800px;
      margin: 0 auto 3rem;
    }

    .call-to-action h2 {
      color: #ff0000;
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: bold;
    }

    .call-to-action p {
      color: #333;
      font-size: 1.2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .convocatoria-img {
      width: 100%;
      max-width: 700px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      display: block;
      margin: 0 auto;
    }

    .convocatoria-img:hover {
      transform: scale(1.03);
    }

    .areas-section {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .areas-section h2 {
      color: #ff0000;
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: bold;
    }

    .areas {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .area {
      background-color: #fff;
      padding: 2rem;
      border-left: 12px solid #ff0000;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .area:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .banner {
      /* Removed background-color and simplified to just text styling */
      color: #000; /* Changed to black for better contrast, can be #ff0000 if preferred */
      font-size: 1.6rem;
      text-align: center;
      margin-bottom: 1.5rem;
      font-weight: bold;
      letter-spacing: 0.5px;
    }

    .area p {
      margin: 0.75rem 0;
      color: #333;
      font-size: 1.1rem;
      text-align: justify;
    }

    button {
      margin-top: 1.5rem;
      padding: 0.8rem 1.5rem;
      background-color: #ff0000;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    button:hover {
      background-color: #d40000;
      transform: scale(1.05);
    }

    .ubicacion {
      text-align: center;
      padding: 3rem;
      background: linear-gradient(to right, #000, #ff0000);
      color: white;
      width: 100;
    }

    .ubicacion h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .ubicacion a {
      color: #fff;
      text-decoration: underline;
      font-weight: bold;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .ubicacion a:hover {
      color: #f0f0f0;
    }

    footer {
      background-color: #000;
      color: white;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      .areas {
        max-width: 50%;
      }

      .convocatoria-img {
        max-width: 45%;
      }
    }

    @media screen and (max-width: 768px) {
      header {
        font-size: 1.6rem;
        padding: 2rem 1rem;
      }

      .logo {
        max-width: 150px;
      }

      .area {
        font-size: 0.95rem;
      }

      .banner {
        font-size: 1.4rem;
      }

      .about-section h2,
      .call-to-action h2,
      .areas-section h2 {
        font-size: 1.5rem;
      }

      .stats {
        flex-direction: column;
        align-items: center;
      }

      .stat {
        width: 80%;
      }
    }