body {
      margin: 0;
      padding: 0;
      font-family: 'Open Sans', sans-serif;
      background: linear-gradient(to bottom, #a7cfd8 40%, #ffffff 60%);
      min-height: 100vh;
    }

    .contact-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px;
      margin-top: 90px;
    }

    .form-container {
      display: flex;
      flex-direction: row;
      max-width: 1100px;
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    .contact-form {
      flex: 2;
      padding: 50px;
      background: #fff;
    }

    .contact-form h2 {
      font-size: 28px;
      color: #1a3c4f;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .input-group {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }

    .input-group input,
    .textarea-group textarea {
      flex: 1;
      padding: 14px;
      border: none;
      border-bottom: 1px solid #ccc;
      font-size: 15px;
      outline: none;
      background: transparent;
      color: #1a3c4f;
    }

    .textarea-group {
      margin-bottom: 30px;
    }

    .send-btn {
      padding: 14px 30px;
      background-color: #0057B8;
      color: #fff;
      border: none;
      font-size: 15px;
      letter-spacing: 1px;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .send-btn:hover {
      background-color: #003e8c;
    }

    .contact-info {
      flex: 1;
      background-color: #0057B8;
      color: #fff;
      padding: 50px;
    }

    .contact-info h3 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 15px;
      margin-bottom: 30px;
    }

    .contact-info ul {
      list-style: none;
      padding: 0;
      font-size: 15px;
    }

    .contact-info li {
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .contact-map iframe {
      width: 100%;
      height: 400px;
      border: none;
      display: block;
      margin-top: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media screen and (max-width: 991px) {
      .form-container {
        flex-direction: column;
        box-shadow: none;
      }

      .contact-form,
      .contact-info {
        padding: 30px 20px;
        width: 100%;
      }

      .contact-form h2 {
        font-size: 24px;
      }

      .send-btn {
        width: 100%;
      }
    }