* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 10;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  header .logo {
    margin-top: 300px;
    margin-bottom: 20px;
  }
  
  .logo-img {
    max-width: 50%; /* Set to 20% of the container width */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
  }
  
  header .logo h1 {
    font-size: 3em;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
  }
  
  .content h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .content p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 40px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-weight: 500;
  }
  
  .cta {
    margin-top: 20px;
  }
  
  .cta form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-row {
    display: flex;
    gap: 15px;
  }

  .cta input, 
  .cta textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .cta textarea {
    resize: vertical;
    min-height: 100px;
  }

  .cta button {
    padding: 12px;
    font-size: 1.1em;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .cta button:hover {
    background-color: #1557b0;
  }
  
  .quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .quick-links .button {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #1a73e8;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 10px;
  }

  .quick-links .button:hover {
    background-color: #1557b0;
  }
  
  footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
  }
  
  footer p {
    font-size: 0.8em;
    color: #bbb;
  }
  
  @media screen and (max-width: 768px) {
    .container {
      max-width: 95%;
      padding: 20px 15px;
      margin: 0 auto;
      width: calc(100% - 20px);
    }
    
    header .logo h1 {
      font-size: 2.5em;
      padding: 0 10px;
    }
    
    .content h2 {
      font-size: 1.8em;
      padding: 0 10px;
    }
    
    .content p {
      font-size: 1.2em;
      padding: 0 10px;
    }
    
    .quick-links {
      flex-direction: column;
      align-items: center;
      padding: 0 10px;
    }
    
    .quick-links .button {
      padding: 12px 25px;
      font-size: 1.1em;
    }
    
    .form-row {
      flex-direction: column;
      gap: 15px;
      padding: 0 10px;
    }
    
    .cta button {
      font-size: 1.1em;
    }
  }
  
  @media screen and (max-width: 480px) {
    .container {
      max-width: 100%;
      padding: 15px 10px;
      width: calc(100% - 20px);
    }
    
    header .logo h1 {
      font-size: 2em;
      padding: 0 10px;
    }
    
    .content h2 {
      font-size: 1.5em;
    }
    
    .content p {
      font-size: 1.1em;
    }
    
    .quick-links .button {
      padding: 10px 20px;
      font-size: 1em;
      width: 100%;
      max-width: 250px;
    }
    
    .cta button {
      font-size: 1.1em;
    }
  }