
  .contact-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem 0;
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .contact-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
  }

  .contact-left p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }

  .contact-details p {
    margin: 0.6rem 0;
    font-size: 1rem;
    color: #333;
  }

  .contact-details i {
    color: #007acc;
    margin-right: 10px;
    width: 18px;
  }

  .contact-details a {
    color: #007acc;
    text-decoration: none;
  }

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

  .social-section h3 {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #333;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .social-icons a {
    margin-right: 1rem;
    font-size: 1.3rem;
    color: #007acc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #005f99;
  }

  .contact-right form {
    display: flex;
    flex-direction: column;
  }

  .contact-right input,
  .contact-right textarea {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .contact-right input:focus,
  .contact-right textarea:focus {
    border-color: #007acc;
    outline: none;
  }

  .contact-right button {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    background: #007acc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .contact-right button:hover {
    background: #005f99;
  }

  .contact-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
  }

  @media (max-width: 900px) {
    .contact-container {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }

    .contact-map iframe {
      height: 300px;
    }
  }
