
    /* Global Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    /* Header Navigation */
    header {
      background-color: #ffffff;
      border-bottom: 1px solid #e0e0e0;
      padding: 12px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .brand {
      display: flex;
      align-items: center;
    }

    .logo-box {
      background-color: #0b8043;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      padding: 6px 16px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    .search-bar {
      flex-grow: 1;
      max-width: 450px;
      margin: 0 20px;
      position: relative;
    }

    .search-bar input {
      width: 100%;
      padding: 8px 12px 8px 36px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 0.95rem;
      outline: none;
    }

    .search-bar svg {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      fill: #666;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #0b8043;
    }

    .profile-link {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Main Container */
    /*.container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }*/

    .page-title-section {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .back-btn {
      font-size: 1.5rem;
      cursor: pointer;
      text-decoration: none;
      color: #333;
    }

    .page-title-section h1 {
      font-size: 1.8rem;
      font-weight: 700;
    }

    .subtitle {
      color: #666;
      font-size: 0.95rem;
      margin-top: -20px;
      margin-left: 35px;
      margin-bottom: 30px;
    }

    /* Layout Grid */
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
      .content-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Info Column */
    .info-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .info-card h2 {
      font-size: 1.3rem;
      color: #111;
      margin-bottom: 12px;
    }

    .info-card p {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 24px;
    }

    .info-card h3 {
      font-size: 1.05rem;
      color: #222;
      margin-bottom: 12px;
    }

    .info-card ul {
      list-style-type: disc;
      padding-left: 20px;
      color: #444;
      font-size: 0.95rem;
    }

    .info-card li {
      margin-bottom: 8px;
    }

    /* Direct Contact Box Inside Column */
    .contact-details-box {
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .contact-details-box h4 {
      font-size: 1rem;
      margin-bottom: 12px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #333;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    /* Contact Form Column */
    .form-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .form-card h2 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: #111;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #0b8043;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .submit-btn {
      width: 100%;
      background-color: #0b8043;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .submit-btn:hover {
      background-color: #086334;
    }

/* TICKETEAZZ CONTACT HERO */
.contact-hero {
    background: linear-gradient(135deg, #0d8a52 0%, #075c38 100%);
    padding: 85px 5%;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    top: -250px;
    right: -100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -80px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.contact-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 65px 5%;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 4%;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 14px;
    }
}
