
    body {
      background-color: #f8f9fa;
      color: #212529;
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
    }

    .text-orange {
      color: var(--red) !important;
    }

    .btn-orange {
      background-color: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    .btn-orange:hover {
      background-color: #e64500;
      border-color: #e64500;
      color: #fff;
    }

    .contact-hero {
      background: linear-gradient(180deg, #ffffff 0%, #fff5ef 100%);
      padding: 80px 0 60px;
    }

    .hero-badge {
      display: inline-block;
      background: #fff1ea;
      color: var(--red);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 8px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .hero-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .hero-text {
      color: #6c757d;
      max-width: 760px;
      margin: 0 auto;
    }

    .contact-wrapper {
      margin-top: -20px;
      margin-bottom: 60px;
    }

    .contact-card,
    .info-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 22px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      height: 100%;
    }

    .contact-card {
      padding: 35px;
    }

    .info-card {
      padding: 30px;
    }

    .section-heading {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-text {
      color: #6c757d;
      margin-bottom: 24px;
    }

    .form-control,
    .form-select {
      border-radius: 12px;
      padding: 14px 16px;
      border: 1px solid #dee2e6;
      box-shadow: none !important;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--red);
    }

    textarea.form-control {
      min-height: 140px;
      resize: none;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 18px 0;
      border-bottom: 1px solid #f1f1f1;
    }

    .info-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .info-icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      border-radius: 50%;
      background: #fff3ed;
      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
    }

    .info-item h5 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .info-item p,
    .info-item a {
      color: #6c757d;
      margin-bottom: 0;
      text-decoration: none;
    }

    .help-box {
      background: linear-gradient(135deg, var(--red) 0%, #ff6b35 100%);
      color: #fff;
      border-radius: 20px;
      padding: 25px;
      margin-top: 25px;
    }

    .help-box h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .help-box p {
      margin-bottom: 0;
      color: rgba(255,255,255,0.92);
    }

    footer {
      border-top: 1px solid #e9ecef;
      background: #fff;
    }

    @media (max-width: 991px) {
      .hero-title {
        font-size: 2.2rem;
      }

      .contact-card,
      .info-card {
        padding: 25px;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.8rem;
      }

      .contact-hero {
        padding: 65px 0 45px;
      }

      .contact-card,
      .info-card {
        padding: 20px;
      }
    }