  .contact-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 40px;
  }

  h1 {
      font-size: 48px;
      color: #1d3557;
      margin-bottom: 20px;
      text-align: center;
  }

  .contact-intro {
      text-align: center;
      color: #555;
      font-size: 18px;
      margin-bottom: 50px;
      line-height: 1.6;
  }

  .contact-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      margin-top: 40px;
      justify-content: center;
  }

  .contact-info {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-info h2 {
      color: #1d3557;
      font-size: 28px;
      margin-bottom: 25px;
  }

  .info-item {
      margin-bottom: 25px;
  }

  .info-item h3 {
      color: #457b9d;
      font-size: 18px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .info-item p {
      color: #666;
      line-height: 1.6;
      margin-left: 30px;
  }

  .info-item a {
      color: #457b9d;
      text-decoration: none;
  }

  .info-item a:hover {
      text-decoration: underline;
  }

  .contact-form {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-form h2 {
      color: #1d3557;
      font-size: 28px;
      margin-bottom: 25px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      color: #1d3557;
      font-weight: 500;
      margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #e0e0e0;
      border-radius: 5px;
      font-size: 16px;
      transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: #8ecae6;
  }

  .form-group textarea {
      resize: vertical;
      min-height: 120px;
  }

  .submit-btn {
      background: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
      color: white;
      padding: 14px 40px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(69, 123, 157, 0.4);
  }

  .map-section {
      margin-top: 50px;
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .map-section h2 {
      color: #1d3557;
      font-size: 28px;
      margin-bottom: 20px;
      text-align: center;
  }

  .map-container {
      width: 100%;
      height: 400px;
      border-radius: 10px;
      overflow: hidden;
  }

  .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  @media (max-width: 768px) {
      .contact-content {
          grid-template-columns: 1fr;
      }

      .nav-links {
          gap: 20px;
          font-size: 14px;
      }

      h1 {
          font-size: 36px;
      }

      /* Contact Card Alignment Fixes */
      .contact-info,
      .contact-form {
          text-align: center;
          padding: 30px 20px;
      }

      .contact-info h2,
      .contact-form h2 {
          text-align: center;
      }

      /* Center the icons and text in info items */
      .info-item h3 {
          justify-content: center;
      }

      .info-item p {
          margin-left: 0;
          /* Remove left margin since we are centering */
      }
  }