    :root {
      --primary: #ff6600;
      --primary-dark: #d94d00;
      --dark: #111;
      --gray: #555;
      --light: #fafafa;
      --white: #fff;
      --border: #eee;
      --radius: 12px;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.8;
    }
    
    /* HERO */
    .hero {
      height: 60vh;
      background:
      linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url('/assets/imgs/exhibition-stall-designer.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      color: #111;
    }
    /* Logo Glow Container */
    .logo-glow {
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    @keyframes glowFade {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }
    
    
    
    /* 🟩 White rectangular background behind the logo */
    .logo-glow::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 200px;
      height: 120px;
      background: #fff;
      border-radius: 12px; /* optional: small rounded corners */
      transform: translate(-50%, -50%);
      z-index: 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Logo itself */
    .logo-glow img {
      position: relative;
      z-index: 1;
      width: 160px;
      filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
      border-radius: 6px;
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0px;
      text-shadow: 0 2px 6px rgba(255,255,255,0.7);
    }
    .hero p {
      font-size: 1.7rem;
      margin-bottom: 25px;
      text-shadow: 0 2px 6px rgba(255,255,255,0.7);
      color: white;
    }
    .hero .cta {
      background: linear-gradient(90deg, #ff9500, #ffc14d);
      color: #ffffff;
      text-decoration: none;
      padding: 16px 48px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.4px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
      display: inline-block;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .hero .cta:hover {
      background: linear-gradient(90deg, #ffc14d, #ff9500);
      box-shadow: 0 10px 25px rgba(255, 165, 0, 0.6);
      transform: translateY(-3px) scale(1.04);
      color: #fff;
    }

    /* CONTENT + FORM SECTION */
    .section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;                 /* full width */
        border-radius: 0;            /* REMOVE ROUND CORNER */
        box-shadow: none;            /* REMOVE SHADOW */
        max-width: 100%;             /* FULL WIDTH */
        padding: 40px 0;             /* extra spacing */
    }

    
    /* LEFT CONTENT */
    .content {
      flex: 1 1 70%;
      padding: 40px 50px;
      border-right: 2px solid #bdbbbb;
    }
    .content h2 {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--dark);
    }
    .content h3 {
      font-size: 2.3rem;
      color: var(--primary-dark);
      margin: 20px 0 5px;
    }
    .content p {
      color: var(--gray);
      margin-bottom: 18px;
      text-align: justify;
    }
    .content ul {
      list-style: none;
      padding-left: 0;
    }
    .content li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
    }
    .content li::before {
      content: "";
      position: absolute;
      top: 9px;
      left: 0;
      width: 10px;
      height: 10px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(255,102,0,0.6);
    }
    
    
    /* RIGHT FORM */
    .form-box {
      flex: 1 1 30%;
      padding: 40px 40px;
    }
    .form-box h3 {
      font-size: 2.1rem;
      text-align: center;
      margin-bottom: 20px;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    input[type=text], input[type=email] {
        border: 1px solid #d9d9d9;
    }
    
    input, textarea {
      padding: 14px 16px;
      border: 1px solid #d9d9d9;
      border-radius: 8px;
      font-size: 1.6rem;
      font-family: inherit;
      transition: all 0.3s ease;
    }
    input:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
      outline: none;
    }
    button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 14px;
      font-size: 1.25rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    button:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    
    /* RESPONSIVE */
    @media (max-width: 992px) {
      .section {
        flex-direction: column;
        margin-top: -40px;
      }
      .content, .form-box {
        width: 100%;
        padding: 40px 25px;
        border: none;
      }
      .hero h1 { font-size: 2.2rem; }
      .hero img { width: 120px; }
    }
    .form-images.vertical {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 30px;
    }
    
    .form-images-title {
      font-size: 1.9rem;
      color: var(--primary-dark);
      font-weight: 600;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .form-images.vertical img {
      width: 100%;
      /*max-width: 300px;*/
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .form-images.vertical img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .form-images.vertical a img {
      cursor: pointer;
    }
    .bright-btn {
      background: linear-gradient(90deg, #ffb300, #ffd54f);
      color: black;
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.7rem;
      letter-spacing: 0.3px;
      transition: all 0.35s ease;
      box-shadow: 0 6px 25px rgba(255, 183, 77, 0.6);
      display: inline-block;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .bright-btn:hover {
      background: linear-gradient(90deg, #ffd54f, #ffb300);
      box-shadow: 0 10px 30px rgba(255, 193, 7, 0.8),
                  0 0 10px rgba(255, 255, 255, 0.5);
      transform: translateY(-3px) scale(1.05);
      color: #fff;
    }
    
    /* 📱 MOBILE RESPONSIVE */
    @media (max-width: 768px) {
      .hero {
        height: auto;
        padding: 70px 20px;
      }
    
      .hero h1 {
        font-size: 2.1rem;
        line-height: 1.3;
      }
    
      .hero p {
        font-size: 1.2rem;
        margin-bottom: 20px;
      }
    
      .hero .cta {
        padding: 14px 34px;
        font-size: 1rem;
      }
      
      .bright-btn {
            padding: 12px 26px;
            font-size: 1.3rem;
        }
        
        .logo-glow::after {
        width: 160px;
        height: 100px;
        border-radius: 10px;
        box-shadow: 0 3px 16px rgba(0, 0, 0, 0.14);
        }
    }
    
    /* 📱 EXTRA SMALL MOBILE (iPhone SE, small Android) */
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.9rem;
      }
    
      .hero p {
        font-size: 1.3rem;
      }
    
      .hero .cta {
        padding: 12px 28px;
        font-size: 0.95rem;
      }
      
      .bright-btn {
        padding: 10px 22px;
        font-size: 1.1rem;
        border-radius: 40px;
        }
        
        .logo-glow::after {
        width: 130px;
        height: 80px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
        }
    }
