@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
    body {
      font-family: 'Inter', Arial, sans-serif;
      margin: 0;
      padding: 0;
      /* Moving gradient background */
      background: linear-gradient(120deg, #10828223, #bc494931, #3b51cb39, #e9757526, #07622254, #3b51cb52, #e9757578, #07622293 );
      background-size: 400% 400%;
      animation: bodyGradientMove 18s ease-in-out infinite;
      color: #232946;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    @keyframes bodyGradientMove {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    /* Top Panel Styles */
    #top-panel {
      height: 50px;
      /* Beautiful orange glassy gradient background */
      background: linear-gradient(120deg, rgba(255,140,0,0.90) 0%, rgba(255,94,58,0.90) 100%);
      backdrop-filter: blur(8px) saturate(160%);
      -webkit-backdrop-filter: blur(8px) saturate(160%);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 4px 24px 0 rgba(255,140,0,0.10);
      border-radius: 0 0 18px 18px;
      justify-content: space-between;
      padding: 0 3vw;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      min-width: 0;
      z-index: 100;
      box-sizing: border-box;
    }
    #top-panel h3 {
      color: #fff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
      margin: 0;
      font-size: clamp(18px, 2.2vw, 28px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-shrink: 0;
    }
    .navbar {
      display: flex;
      flex-wrap: wrap;
      gap: 1vw;
      min-width: 0;
    }
    .navbar a {
      padding: 0.4em 1em;
      font-size: clamp(11px, 1.1vw, 15px);
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      text-decoration: none;
      color: white;
      font-weight: bold;
      transition: all 0.3s ease;
      margin-left: 0;
      white-space: nowrap;
    }
    .navbar a:hover {
      background-color: rgba(255, 255, 255, 0.144);
      font-size: clamp(12px, 1.2vw, 16px);
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
      transform: scale(1.05);
    }
    @media screen and (max-width: 900px) {
      #top-panel {
        padding: 0 2vw;
      }
      .navbar {
        gap: 0.5vw;
      }
    }
    @media screen and (max-width: 700px) {
      #top-panel {
        height: 38px;
        padding: 0 1vw;
      }
      #top-panel h3 {
        font-size: 18px;
        margin-left: 40px;
      }
      .navbar {
        display: none !important;
      }
    }
    /* Left Panel Styles */
    #left-panel {
      display: none;
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 200px;
      /* Beautiful orange glassy vertical gradient */
      background: linear-gradient(160deg, rgba(255,140,0,0.96) 0%, rgba(255,94,58,0.92) 100%);
      backdrop-filter: blur(14px) saturate(180%);
      -webkit-backdrop-filter: blur(14px) saturate(180%);
      padding: 10px;
      box-shadow: 4px 0 24px 0 rgba(255,140,0,0.10);
      z-index: 1000;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-right: 1.5px solid rgba(255,255,255,0.13);
      contain: layout style paint;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      will-change: transform;
      transform: translateX(-100%);
    }
    #left-panel.active {
      transform: translateX(0);
      display: block;
    }
    #left-panel h3 {
      color: white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      margin-bottom: 15px;
      font-size: 22px;
      text-align: center;
    }
    #left-panel .navbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    #left-panel .navbar li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    #left-panel .navbar a {
      display: block;
      padding: 12px 15px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }
    #left-panel .navbar a:hover {
      background: rgba(255, 255, 255, 0.1);
      padding-left: 20px;
    }
    #menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      padding: 0;
      position: fixed;
      left: 5px;
      top: 0px;
      z-index: 1001;
    }
    #menu-toggle .arrow {
      display: block;
      width: 24px;
      height: 24px;
      transition: transform 0.3s;
      filter: drop-shadow(0 0 2px #964d12) drop-shadow(0 0 2px #fff);
      animation: arrow-bounce 1.2s infinite alternate;
    }
    @keyframes arrow-bounce {
      0% { transform: translateY(0) rotate(0deg);}
      60% { transform: translateY(3px) rotate(0deg);}
      100% { transform: translateY(0) rotate(0deg);}
    }
    body.panel-active #menu-toggle .arrow {
      transform: rotate(90deg) translateX(4px);
      animation: arrow-move-right 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
    }
    @keyframes arrow-move-right {
      from { transform: rotate(0deg) translateY(0);}
      to { transform: rotate(90deg) translateX(4px);}
    }
    body.panel-active {
      margin-left: 180px;
    }
    @media screen and (max-width: 768px) {
      #menu-toggle {
        display: flex;
      }
      #top-panel {
        height: 35px;
        padding: 10px 15px;
        /* Match beautiful orange background for mobile */
        background: linear-gradient(120deg, rgba(255,140,0,0.96) 0%, rgba(255,94,58,0.96) 100%);
        backdrop-filter: blur(10px) saturate(180%);
        -webkit-backdrop-filter: blur(10px) saturate(180%);
        border-radius: 0 0 14px 14px;
      }
      #top-panel .navbar {
        display: none !important;
      }
      #top-panel h3 {
        font-size: 20px;
        margin-left: 40px;
        order: 2;
      }
      #left-panel {
        display: block;
        width: 180px;
        /* Match beautiful orange background for mobile */
        background: linear-gradient(160deg, rgba(255,140,0,0.98) 0%, rgba(255,94,58,0.96) 100%);
        backdrop-filter: blur(16px) saturate(200%);
        -webkit-backdrop-filter: blur(16px) saturate(200%);
        border-radius: 0 18px 18px 0;
        overflow-y: auto;
        max-height: 100vh;
      }
      #left-panel.active {
        display: block;
        width: 180px;
      }
      #left-panel .navbar {
        display: flex !important; /* Ensure navbar is flex on small screens */
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
      }
      #left-panel .navbar li {
        width: 100%;
      }
      #left-panel .navbar a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 15px;
        font-size: 15px;
        margin: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s;
      }
      #left-panel .navbar a:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
      }
      .contact-container {
        margin-top: 60px;
      }
    }
    @media screen and (min-width: 769px) {
      #left-panel {
        display: none !important;
      }
    }
    .contact-container {
      width: 95%;
      max-width: 520px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px 0 rgba(35, 41, 70, 0.10);
      overflow: hidden;
      margin: 2.5rem auto;
      margin-top: 80px;
    }
    .tabs {
      display: flex;
      border-bottom: 1px solid #e0e7ff;
      background: #f5f7fa;
    }
    .tab-button {
      flex: 1;
      text-align: center;
      padding: 1rem 0.5rem;
      cursor: pointer;
      background: transparent;
      font-weight: 600;
      border: none;
      outline: none;
      font-size: 1.08rem;
      color: #232946;
      transition: background 0.2s, color 0.2s;
      letter-spacing: 0.5px;
    }
    .tab-button.active {
      background: #fff;
      color: #005f73;
      border-bottom: 2.5px solid #3a86ff;
    }
    .tab-content {
      padding: 2rem 1.5rem 1.5rem 1.5rem;
      display: none;
      animation: fadeIn 0.3s;
    }
    .tab-content.active {
      display: block;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px);}
      to { opacity: 1; transform: translateY(0);}
    }
    .info-icons {
      text-align: center;
    }
    .info-icons img {
      width: 36px;
      vertical-align: middle;
      margin-right: 0.5rem;
      margin-bottom: -7px;
    }
    .info-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 1rem auto 0.5rem auto;
      text-decoration: none;
      color: #fff;
      background-color: #25D366;
      padding: 0.7rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.08rem;
      box-shadow: 0 2px 8px 0 rgba(39, 174, 96, 0.10);
      border: none;
      transition: background 0.2s, box-shadow 0.2s;
      min-width: 180px;
    }
    .info-icons a.email {
      background-color: #005f73;
      margin-top: 0.5rem;
    }
    .info-icons a:hover {
      background-color: #1ebc59;
    }
    .info-icons a.email:hover {
      background-color: #3a86ff;
    }
    .info-icons p {
      margin: 0.5rem 0 1.2rem 0;
      color: #232946;
      font-size: 1.08rem;
      font-weight: 500;
    }
    .info-icons .response {
      color: #888;
      font-size: 0.98rem;
      margin-top: 1.2rem;
    }
    .form-group {
      margin-bottom: 1.2rem;
      position: relative;
      width: 100%;
      box-sizing: border-box;
    }
    label {
      display: block;
      margin-bottom: 0.4rem;
      font-size: 1rem;
      color: #005f73;
      font-weight: 500;
      letter-spacing: 0.2px;
    }
    input, textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #e0e7ff;
      border-radius: 8px;
      font-size: 1rem;
      background: #f8fafc;
      color: #232946;
      transition: border 0.2s;
      resize: vertical;
      max-width: 100%;
      box-sizing: border-box;
    }
    input:focus, textarea:focus {
      border: 1.5px solid #3a86ff;
      outline: none;
      background: #fff;
    }
    textarea {
      min-height: 90px;
      max-height: 220px;
    }
    button[type="submit"] {
      background: linear-gradient(90deg, #3a86ff 60%, #005f73 100%);
      color: #fff;
      border: none;
      padding: 0.9rem 0;
      font-size: 1.08rem;
      width: 100%;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-top: 0.5rem;
      box-shadow: 0 2px 8px 0 rgba(58, 134, 255, 0.07);
      transition: background 0.2s, box-shadow 0.2s;
    }
    button[type="submit"]:hover {
      background: linear-gradient(90deg, #005f73 60%, #3a86ff 100%);
      box-shadow: 0 4px 16px 0 rgba(58, 134, 255, 0.13);
    }
    .success-message, .error-message {
      text-align: center;
      margin-top: 1rem;
      font-size: 1.05rem;
      border-radius: 6px;
      padding: 0.7rem 1rem;
      display: none;
    }
    .success-message {
      background: #e6f9ed;
      color: #218838;
      border: 1px solid #b7e4c7;
    }
    .error-message {
      background: #ffeaea;
      color: #d90429;
      border: 1px solid #ffb3b3;
    }
    .contact-sections-wrapper {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }
    .contact-info-panel, .contact-form-panel {
      flex: 1 1 380px;
      max-width: 520px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px 0 rgba(35, 41, 70, 0.10);
      margin: 1.5rem 0;
      padding: 2.5rem 2rem 2rem 2rem;
      min-width: 0;
      width: 100%;
      box-sizing: border-box;
    }
    .contact-form-panel form {
      width: 100%;
      box-sizing: border-box;
    }
    .form-group {
      width: 100%;
      box-sizing: border-box;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    @media (max-width: 1200px) {
      .contact-sections-wrapper {
        max-width: 98vw;
        gap: 1.2rem;
      }
      .contact-info-panel, .contact-form-panel {
        max-width: 98vw;
        min-width: 0;
        padding: 1.5rem 0.7rem 1.5rem 0.7rem;
      }
    }
    @media (max-width: 950px) {
      .contact-sections-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        max-width: 100vw;
      }
      .contact-info-panel, .contact-form-panel {
        max-width: 100%;
        margin: 0 auto;
      }
    }
    @media (max-width: 700px) {
      .contact-sections-wrapper {
        gap: 0.7rem;
        padding: 0 2vw;
      }
      .contact-info-panel, .contact-form-panel {
        padding: 1rem 0.3rem 1rem 0.3rem;
        border-radius: 10px;
        margin: 0.7rem 0;
        min-width: 0;
        width: 100%;
      }
      .form-group input,
      .form-group textarea {
        font-size: 1em;
        padding: 0.7em;
        min-width: 0;
        width: 100%;
        max-width: 100%;
      }
    }
    @media (max-width: 480px) {
      .contact-sections-wrapper {
        padding: 0 1vw;
      }
      .contact-info-panel, .contact-form-panel {
        padding: 0.7rem 0.1rem 0.7rem 0.1rem;
        font-size: 0.97em;
        min-width: 0;
        width: 100%;
      }
      .form-group input,
      .form-group textarea {
        font-size: 0.98em;
        padding: 0.6em;
        min-width: 0;
        width: 100%;
        max-width: 100%;
      }
    }
