 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', system-ui, sans-serif;
     background: #fff;
     color: #0f172a;
 }

 
 /* HERO */
 .hero {
     background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
     color: #fff;
     padding: 5rem 1.5rem 4rem;
     text-align: center;
 }

 .hero-inner {
     max-width: 700px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: clamp(2rem, 6vw, 3.5rem);
     font-weight: 900;
     margin-bottom: 1rem;
     letter-spacing: -0.02em;
 }

 .hero p {
     font-size: 1.1rem;
     color: #cbd5e1;
     margin-bottom: 2rem;
     line-height: 1.7;
 }

 /* SEARCH */
 .search-wrap {
     position: relative;
     max-width: 540px;
     margin: 0 auto;
 }

 .search-wrap .icon {
     position: absolute;
     left: 1.1rem;
     top: 50%;
     transform: translateY(-50%);
     color: #94a3b8;
     pointer-events: none;
     display: flex;
 }

 .search-input {
     width: 100%;
     padding: 1rem 1.5rem 1rem 3.2rem;
     font-size: 1rem;
     border: none;
     border-radius: 999px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
     outline: none;
     color: #0f172a;
     background: #fff;
 }

 .search-input::placeholder {
     color: #94a3b8;
 }

 /* FAQ SECTION */
 .faq-section {
     max-width: 800px;
     margin: 0 auto;
     padding: 4rem 1.5rem;
 }

 .faq-category {
     margin-bottom: 3rem;
 }

 .faq-category h2 {
     font-size: 1.6rem;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 1.25rem;
     padding-bottom: 0.75rem;
     border-bottom: 2px solid #f1f5f9;
 }

 .faq-item {
     border: 1px solid #e2e8f0;
     border-radius: 1rem;
     overflow: hidden;
     margin-bottom: 0.75rem;
     transition: box-shadow 0.2s;
 }

 .faq-item:hover {
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
 }

 .faq-question {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     padding: 1.1rem 1.4rem;
     background: #fff;
     border: none;
     cursor: pointer;
     text-align: left;
     transition: background 0.15s;
 }

 .faq-question:hover {
     background: #f8fafc;
 }

 .faq-question span {
     font-size: 0.98rem;
     font-weight: 600;
     color: #0f172a;
     line-height: 1.5;
 }

 .faq-chevron {
     flex-shrink: 0;
     color: #64748b;
     transition: transform 0.25s;
 }

 .faq-chevron.open {
     transform: rotate(180deg);
 }

 .faq-answer {
     display: none;
     padding: 1rem 1.4rem 1.2rem;
     background: #f8fafc;
     border-top: 1px solid #e2e8f0;
     color: #475569;
     font-size: 0.95rem;
     line-height: 1.75;
 }

 .faq-answer.open {
     display: block;
 }

 /* NO RESULTS */
 .no-results {
     text-align: center;
     padding: 3rem 1rem;
     color: #64748b;
     font-size: 1rem;
     display: none;
 }

 .btn-reset {
     display: inline-block;
     margin-top: 1rem;
     padding: 0.6rem 1.5rem;
     background: #0f172a;
     color: #fff;
     border: none;
     border-radius: 999px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s;
 }

 .btn-reset:hover {
     background: #1e293b;
 }

 /* CONTACT SECTION */
 .contact-section {
     background: #f8fafc;
     padding: 4rem 1.5rem;
 }

 .contact-inner {
     max-width: 700px;
     margin: 0 auto;
 }

 .contact-inner h2 {
     font-size: clamp(1.5rem, 4vw, 2.2rem);
     font-weight: 800;
     text-align: center;
     margin-bottom: 2.5rem;
     color: #0f172a;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 @media (max-width: 560px) {
     .contact-grid {
         grid-template-columns: 1fr;
     }
 }

 .contact-card {
     background: #fff;
     border-radius: 1.25rem;
     padding: 2rem 1.5rem;
     text-align: center;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
     border: 1px solid #f1f5f9;
     transition: box-shadow 0.2s, transform 0.2s;
 }

 .contact-card:hover {
     box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
     transform: translateY(-3px);
 }

 .contact-icon {
     width: 60px;
     height: 60px;
     background: #d1fae5;
     border-radius: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.25rem;
     color: #059669;
 }

 .contact-card h3 {
     font-size: 1.1rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 0.5rem;
 }

 .contact-card .contact-value {
     color: #059669;
     font-weight: 600;
     font-size: 0.95rem;
     margin-bottom: 0.4rem;
     word-break: break-all;
 }

 .contact-card .contact-desc {
     color: #64748b;
     font-size: 0.85rem;
 }

 /* FADE-IN */
 .fade-up {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
 }