    body {
      background-color: #f9f9f9;
      font-family: 'Segoe UI', sans-serif;
    }

    .contact-section {
      padding: 60px 0;
    }

    .contact-left {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-left h3 {
      margin-bottom: 20px;
      color: #333;
    }

    .contact-left p {
      margin-bottom: 10px;
      color: #555;
    }

    .contact-left i {
      color: #0d6efd;
      margin-right: 8px;
    }

    .contact-left a {
      color: #0d6efd;
      text-decoration: none;
    }

    .contact-left a:hover {
      text-decoration: underline;
    }

    .contact-form {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-form h3 {
      margin-bottom: 20px;
      color: #333;
    }

    .btn-submit {
      background-color: #0d6efd;
      color: #fff;
      border-radius: 8px;
      padding: 10px 20px;
      transition: all 0.3s;
    }

    .btn-submit:hover {
      background-color: #0b5ed7;
    }

    .error {
      color: red;
      font-size: 0.9em;
    }

    .full-map {
      width: 100%;
      height: 500px;
      margin-top: 40px;
      border-radius: 12px;
      overflow: hidden;
    }

    @media(max-width: 768px) {

      .contact-left,
      .contact-form {
        margin-bottom: 30px;
      }
    }