*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      color: #333333;
      background-color: #ffffff;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    /* =============================================
       Utility
       ============================================= */
    .section-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #0A74DA;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .section-title.centered {
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 48px;
      font-weight: 400;
    }

    /* CTA Button */
    .btn-cta {
      display: inline-block;
      background-color: #FF7A00;
      color: #ffffff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .btn-cta:hover {
      background-color: #e86e00;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
    }

    .btn-lg {
      padding: 10px 40px;
      font-size: 1.1rem;
      margin-top: 40px;
    }

    .btn-full {
      width: 100%;
    }

    /* =============================================
       Header
       ============================================= */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(255, 255, 255, 0.95);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .site-header.scrolled {
      background-color: #ffffff;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0A74DA;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .main-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #333;
      transition: color 0.3s ease;
    }

    .main-nav a:hover {
      color: #0A74DA;
    }

    .nav-cta {
      padding: 10px 24px !important;
      font-size: 0.9rem !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 3px;
      background-color: #0A74DA;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    /* =============================================
       Hero
       ============================================= */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('../images/banner_background_img.jpg') center/cover no-repeat;
      padding: 120px 24px 80px;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10, 116, 218, 0.88) 0%, rgba(56, 163, 165, 0.75) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
      text-align: center;
    }

    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      /*margin-bottom: 40px;*/
      font-weight: 400;
      line-height: 1.8;
    }

    /* =============================================
       About
       ============================================= */
    .about-section {
      padding: 40px 0;
      background-color: #ffffff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-text p {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 16px;
      line-height: 1.8;
    }

    .about-image img {
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(10, 116, 218, 0.15);
    }

    /* =============================================
       Services
       ============================================= */
    .services-section {
      padding: 40px 0;
      background-color: #f7f9fc;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(10, 116, 218, 0.15);
    }

    .service-image {
      height: 220px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-image img {
      transform: scale(1.05);
    }

    .service-body {
      padding: 28px;
    }

    .service-body h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #0A74DA;
      margin-bottom: 12px;
    }

    .service-body p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.7;
    }

    /* =============================================
       Why Choose Us
       ============================================= */
    .why-section {
      padding: 40px 0;
      background-color: #ffffff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .why-card {
      padding: 32px;
      border-radius: 12px;
      background: #f7f9fc;
      border: 1px solid rgba(56, 163, 165, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(56, 163, 165, 0.12);
    }

    .why-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: #38A3A5;
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .why-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
    }

    /* =============================================
       Results / Impact
       ============================================= */
    .results-section {
      padding: 40px 0;
      background: linear-gradient(135deg, #0A74DA 0%, #38A3A5 100%);
      color: #ffffff;
    }

    .results-section .section-title {
      color: #ffffff;
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 48px;
      margin-bottom: 48px;
    }

    .result-item {
      text-align: center;
    }

    .result-number {
      display: block;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .result-label {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0.9;
    }

    .results-cta {
      text-align: center;
    }

    /* =============================================
       Contact
       ============================================= */
    .contact-section {
      padding: 40px 0;
      background-color: #f7f9fc;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info p {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 16px;
      line-height: 1.8;
    }

    .contact-email {
      font-weight: 600;
      color: #0A74DA !important;
      font-size: 1.1rem !important;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #333;
    }

    .form-group input,
    .form-group textarea {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      padding: 14px 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      background-color: #ffffff;
      color: #333;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #0A74DA;
      box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.12);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #aaa;
    }
    
    /* ============================================= */
    /* Scheduling CTA Section */
    
    .cta-scheduling-section {
      background: linear-gradient(135deg, #0A74DA 0%, #38A3A5 100%);
      color: #ffffff;
      padding: 80px 20px;
      text-align: center;
      border-radius: 12px;
      margin: 40px auto 40px;
      max-width: 1200px;
      box-shadow: 0 12px 36px rgba(10, 116, 218, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .cta-scheduling-section:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(10, 116, 218, 0.25);
    }
    
    .cta-scheduling-container {
      display: flex;
      justify-content: center;
    }
    
    .cta-scheduling-content h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    .cta-scheduling-content .cta-icon {
      font-size: 2.2rem;
      animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-8px); }
      60% { transform: translateY(-4px); }
    }
    
    .cta-scheduling-content .cta-text {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .cta-scheduling-btn {
      background-color: #FF7A00;
      color: #ffffff;
      padding: 10px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    
    .cta-scheduling-btn:hover {
      background-color: #e86e00;
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(255, 122, 0, 0.35);
    }

    /* =============================================
       Footer
       ============================================= */
    .site-footer {
      background-color: #062a52;
      padding: 40px 0;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
    }

    /* =============================================
       Responsive
       ============================================= */
    @media (max-width: 992px) {
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .results-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .main-nav {
        position: fixed;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
      }

      .main-nav.open {
        top: 72px;
        transform: translateY(0);
      }
      
      .hero-section{
        min-height: 80vh;
      }

      .section-title {
        font-size: 1.75rem;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .results-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .result-number {
        font-size: 2.2rem;
      }

      .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
      
    /* ============================================= */
    /* Scheduling CTA Section */
    
    .cta-scheduling-section {
        padding: 20px 0px;
        margin: 40px 20px;
    }
    
    .cta-scheduling-content h2 {
      font-size: 1.6rem;
    }
    
    .cta-scheduling-content .cta-text {
      font-size: 1.1rem;
    }
    
    .cta-scheduling-btn {
      padding: 14px 32px;
      font-size: 1rem;
    }
}

    @media (max-width: 480px) {
      .logo {
        font-size: 1rem;
      }

      .hero-section {
        padding: 100px 16px 30px;
      }

      .hero-content h1 {
        font-size: 1.7rem;
      }

      .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }