    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #fff;
      color: #222;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10%;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    header a {
        text-decoration: none;
    }

    header h1 {
      color: #005a87;
      font-size: 1.6rem;
    }

    .pcmenu {
      display: flex;
      gap: 25px;
    }

    .pcmenu a {
      color: #005a87;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .pcmenu a:hover {
      color: #007bbd;
    }

    .bars {
      display: none;
      cursor: pointer;
    }

    /* ---------- MOBILE MENU ---------- */
    #mobile-menu {
      display: none;
      flex-direction: column;
      background: #005a87;
    }

    #mobile-menu a {
      color: white;
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    #mobile-menu a:hover {
      background: #007bbd;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 40px 0;
    }

    /* Contact Section */
    .contact-section {
      display: flex;
      align-items: stretch;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .contact-section img {
      width: 100%;
      max-width: 500px;
      border-radius: 8px;
      object-fit: cover;
    }

    .contact-info {
      flex: 1;
      background: #005f73;
      color: #fff;
      padding: 30px;
      border-radius: 8px;
    }

    .contact-info h2 {
      margin-bottom: 15px;
      font-size: 2rem;
    }

    .contact-info p {
      margin-bottom: 20px;
      font-size: 0.95rem;
      color: #e6f2f2;
    }

    .contact-info div {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-info i {
      font-size: 1.2rem;
    }

    /* Contact Form Section */
    .form-section {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      align-items: stretch;
    }

    .form-text {
      flex: 1;
      background: #005f73;
      color: #fff;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
    }

    .form-text h3 {
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .form-text p {
      font-size: 0.95rem;
    }

    .form-box {
      flex: 2;
      background: #f8f9fa;
      padding: 30px;
      border-radius: 8px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    button {
      background: #005f73;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
    }

    button:hover {
      background: #0a9396;
    }

    /* Responsive */
    @media (max-width: 768px) {
     .pcmenu { 
        display: none; 
       }

      .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
       }
      .contact-section,
      .form-section {
        flex-direction: column;
      }

      .contact-info,
      .form-text,
      .form-box {
        text-align: center;
      }
    }