body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    font-size: 22px;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 50px 0px;
  }
  
  .hero-section {
    background: #ffffff;
    padding: 80px 24px 0px;
    text-align: left;
  }
  
  .hero-section h1 {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #000;
  }
  
  .hero-section h1 .highlight {
    background: yellow;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .hero-section p {
    font-size: 24px;
    font-weight: normal;
    max-width: 750px;
    margin-bottom: 20px;
    color: #000;
  }
  
  h2 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #000;
    line-height: 1.3;
  }
  
  ul {
    list-style: disc;
    margin-left: 30px;
    font-size: 22px;
  }
  
  .no-list {
    list-style: none;
    padding-left: 0;
  }
  
  .no-list li {
    font-size: 22px;
    margin: 10px 0;
  }
  
  strong {
    font-weight: bold;
  }
  
  em {
    font-style: italic;
  }
  
  .form-section {
    margin: 60px 0;
  }
  
  input[type="text"],
  input[type="email"] {
    padding: 14px;
    border: 1px solid #000;
    font-size: 20px;
    font-family: 'Calibri', sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
  }
  
  button {
    background-color: #c90a0a;
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-size: 20px;
    font-family: 'Calibri', sans-serif;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
  }
  
  .footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 30px;
    text-align: left;
    border-top: 1px solid #ccc;
  }
  
  .footer h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
  }
  
  .footer-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0px;
    max-width: 700px;
    margin: 0 auto 0 0;
  }
  
  .footer-form input {
    padding: 14px;
    border: 1px solid #000;
    font-size: 20px;
    font-family: 'Calibri', sans-serif;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-form input::placeholder {
    color: #999;
  }
  
  .footer-form button {
    padding: 14px 28px;
    background-color: #c90a0a;
    color: #fff;
    font-size: 20px;
    font-family: 'Calibri', sans-serif;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
  }
  
  .centered-form {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .frase-con-guiones span::before {
    content: "– ";
    color: red;
    font-weight: bold;
  }
  
  .frase-con-guiones span::before {
    content: "– ";
    color: red;
    font-weight: bold;
  }
  
  .bloque-cita {
    border-left: 4px solid #000;
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
  }
  
  @media (max-width: 768px) {
    body {
      font-size: 24px;
      line-height: 1.4;
    }
  
    .container {
      padding: 0px 22px 0px;
    }
  
    .hero-section {
      padding: 80px 0px 0px;  
    }
    
    .hero-section h1 {
      font-size: 54px;
      line-height: 1.2;
      margin-bottom: 24px;
    }
  
    h2 {
      font-size: 28px;
      margin-top: 40px;
      margin-bottom: 20px;
    }
  
    .footer h3 {
      font-size: 24px;
    }
  
    .footer-form {
      flex-direction: column;
      gap: 12px;
    }
  
    .footer-form input,
    .footer-form button {
      width: 100%;
      font-size: 18px;
      padding: 12px;
    }
  
    .form-section button,
    .form-section input {
      font-size: 18px;
      padding: 12px;
    }
  
    .bloque-cita {
      font-size: 18px;
      padding-left: 16px;
      margin: 30px 0;
    }
  
    .frase-con-guiones span::before {
      font-size: 24px;
    }
  }
  