 /* Container */
    .main-container {
      max-width: 1150px;
      margin: auto;
      padding: 60px 20px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 768px) {
      .content-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Contact Info */
    .info-section h2 {
      font-size: 1.9rem;
      color: #1e293b;
      margin-bottom: 15px;
    }
    .info-section p {
      color: #475569;
      margin-bottom: 25px;
      line-height: 1.5;
    }
    .info-row {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #334155;
    }
    .info-row i {
      color: #09433b;
      font-size: 1.2rem;
      margin-right: 12px;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-links a {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: transform 0.2s ease, background 0.3s ease;
    }
    .social-links a:hover {
      transform: scale(1.1);
    }
    .facebook-icon { background: #09433b; }
    .twitter-icon { background: #09433b; }
    .instagram-icon { background: #09433b; }


    /* Form */
    .form-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 18px rgba(0,0,0,0.1);
      padding: 30px;
    }
    .form-box label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #374151;
    }
    .form-box input,
    .form-box textarea {
      width: 100%;
      margin-top: 6px;
      margin-bottom: 18px;
      padding: 10px 12px;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      font-size: 0.95rem;
    }
    .form-box textarea {
      resize: vertical;
    }
    .form-box button {
      width: 100%;
      padding: 12px;
      background: #09433b;
      border: none;
      border-radius: 6px;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .form-box button:hover {
      background: #09433b;
    }

    /* Map */
    .map-section {
      margin-top: 60px;
    }
    .map-section h2 {
      font-size: 1.9rem;
      margin-bottom: 20px;
      color: #1e293b;
    }
    .map-frame {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    }