  html {
      overflow-x: hidden;
    }

    * {
      box-sizing: border-box;
    }
    
    .titleOfSite {
    max-width: 1170px;
    margin: 0 auto 5vh auto;
    background-color: #34495e;
    color: #1abc9c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    padding: 20px 0 20px 0;
}

    

    body {
      margin: 0;
      padding: 0;
      background-color: #2c3e50;
      color: #ecf0f1;
      overflow-x: hidden;
    }

    .wrapper {
      max-width: 1170px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .intro-container,
    .form-container,
    .map-container {
      background-color: #34495e;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      width: 100%;
    }

    .form-map-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
    }

    .form-container,
    .map-container {
      flex: 1 1 45%;
    }

    .form-intro {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      line-height: 1.6;
      font-weight: 400;
      text-align: center;
    }

    h2 {
      color: #1abc9c;
      margin-bottom: 20px;
      text-align: center;
      width: 100%;
    }

    form {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .contact-label {
      display: block;
      margin-bottom: 5px;
      color: #1abc9c;
      align-self: flex-start;
      width: 100%;
    }

    .contact-input,
    textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: none;
      border-radius: 5px;
      background-color: #1f2d3d;
      color: #ecf0f1;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    input:focus,
    textarea:focus {
      outline: none;
      box-shadow: 0 0 5px #1abc9c;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
      max-height: 200px;
    }

    .form-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 10px;
    }

    .form-footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .g-recaptcha {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .contact-button {
      background-color: #1abc9c;
      border: none;
      padding: 20px;
      border-radius: 8px;
      color: #2c3e50;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      min-height: 60px;
      width: 100%;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    button:disabled {
      background-color: #7f8c8d;
      cursor: not-allowed;
    }

    button:hover:enabled {
      background-color: #16a085;
    }

    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
    }

    .success-message,
    .error-message {
      text-align: center;
      margin-top: 10px;
    }

    .success-message {
      color: #1abc9c;
    }

    .error-message {
      color: #e74c3c;
    }
    
    @media (max-width: 1300px) {
        .wrapper {
          max-width: 90vw;
      }
      .titleOfSite {
          max-width: 90vw;
      }
    }

    @media (max-width: 800px) {
      .form-map-wrapper {
        flex-direction: column;
      }

      .form-footer {
        align-items: stretch;
      }
      
    }