      :root {
        --primary-blue: #0A192F;
        --secondary-blue: #112240;
        --accent-yellow: #FBBF24;
        --accent-glow: rgba(251, 191, 36, 0.4);
        --soft-gray: #F8FAFC;
        --deep-gold: #D4AF37;
        --premium-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: rgba(255, 255, 255, 0.4);
      }
      body { font-family: 'Jost', sans-serif; color: #334155; line-height: 1.8; overflow-x: hidden; background-color: #FDFDFD; }
      
      /* --- Pro Level Hero --- */
      .hero-section { 
        background: var(--primary-blue);
        min-height: 70vh; 
        display: flex; 
        align-items: center; 
        position: relative;
        text-align: center;
        overflow: hidden;
      }
      .hero-bg-zoom {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%), url('../img/about.jpg');
        background-size: cover;
        background-position: center;
        animation: kenburns 25s infinite alternate ease-in-out;
        z-index: 1;
      }
      @keyframes kenburns {
        0% { transform: scale(1); }
        100% { transform: scale(1.15); }
      }
      .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0; height: 150px;
        background: linear-gradient(to top, #FDFDFD, transparent);
        z-index: 2;
        pointer-events: none;
      }
      
      /* --- Typography & Titles --- */
      .section-title { 
        font-size: 46px; 
        font-weight: 800; 
        color: var(--primary-blue); 
        margin-bottom: 25px; 
        line-height: 1.2; 
        letter-spacing: -1px; 
        position: relative; 
        display: inline-block;
      }
      .section-title::after { 
        content: ''; 
        position: absolute; 
        bottom: -12px; 
        left: 0; 
        width: 80px; 
        height: 5px; 
        background: linear-gradient(90deg, var(--accent-yellow), transparent); 
        border-radius: 5px; 
      }
      .text-center .section-title::after { 
        left: 50%; 
        transform: translateX(-50%); 
        background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent); 
        width: 120px;
      }
      
      .text-content { font-size: 18px; color: #475569; margin-bottom: 30px; text-align: justify; font-weight: 400; }
      
      /* --- Premium Cards --- */
      .feature-box {
        padding: 45px 35px;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        box-shadow: var(--premium-shadow);
        border: 1px solid var(--glass-border);
        height: 100%;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
        overflow: hidden;
      }
      .feature-box::before {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
        background: linear-gradient(90deg, var(--accent-yellow), var(--deep-gold));
        transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
      }
      .feature-box:hover { 
        transform: translateY(-12px); 
        box-shadow: 0 30px 60px rgba(10, 25, 47, 0.15); 
        background: #fff;
      }
      .feature-box:hover::before { transform: scaleX(1); }
      .feature-box i { transition: all 0.4s ease; display: inline-block; }
      .feature-box:hover i { transform: rotate(15deg) scale(1.2); color: var(--accent-yellow) !important; text-shadow: 0 0 15px var(--accent-glow); }

      .service-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid #F1F5F9;
        display: flex;
        flex-direction: column;
      }
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(10,25,47,0.12);
      }
      .service-img-wrap {
        overflow: hidden;
        position: relative;
      }
      .service-img {
        height: 240px;
        background-size: cover;
        background-position: center;
        transition: transform 0.7s ease;
      }
      .service-card:hover .service-img {
        transform: scale(1.1);
      }
      .service-content {
        padding: 35px 30px;
        flex-grow: 1;
        background: #fff;
        position: relative;
        z-index: 2;
      }
      
      .cta-planning-box {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: #fff;
        padding: 70px 60px;
        border-radius: 32px;
        margin-top: 60px;
        margin-bottom: 60px;
        box-shadow: 0 25px 50px rgba(10, 25, 47, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        position: relative;
        overflow: hidden;
      }
      .cta-planning-box::after {
        content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
        background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 70%);
        border-radius: 50%; pointer-events: none;
      }
      
      .btn-premium {
        background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--deep-gold) 100%);
        color: var(--primary-blue);
        padding: 18px 45px;
        border-radius: 100px;
        font-weight: 800;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.4s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 10px 25px var(--accent-glow);
        text-decoration: none;
        position: relative;
        overflow: hidden;
      }
      .btn-premium::before {
        content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transform: skewX(-25deg); transition: 0.5s;
      }
      .btn-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
        color: var(--primary-blue);
      }
      .btn-premium:hover::before { left: 150%; }
      
      /* --- Pricing Table --- */
      .pricing-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
      }
      .pricing-table th {
        background: transparent;
        color: var(--primary-blue);
        padding: 15px 25px;
        text-align: left;
        font-weight: 700;
        font-size: 18px;
        border-bottom: 2px solid var(--accent-yellow);
      }
      .pricing-table td {
        padding: 22px 25px;
        background: #fff;
        color: #475569;
        font-size: 16px;
        transition: all 0.3s ease;
      }
      .pricing-table tr td:first-child { border-radius: 15px 0 0 15px; font-weight: 700; color: var(--primary-blue); }
      .pricing-table tr td:last-child { border-radius: 0 15px 15px 0; }
      .pricing-table tbody tr { box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: all 0.3s ease; }
      .pricing-table tbody tr:hover { transform: scale(1.01); box-shadow: 0 15px 30px rgba(10,25,47,0.08); z-index: 10; position: relative; }
      .pricing-table tbody tr:hover td { background: var(--primary-blue); color: #fff; }
      .pricing-table tbody tr:hover td:first-child { color: var(--accent-yellow); }

      /* --- FAQ Accordion --- */
      .faq-accordion-item {
        background: #fff;
        border-radius: 18px;
        margin-bottom: 20px;
        border: 1px solid #E2E8F0;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      }
      .faq-header {
        padding: 28px 40px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        color: var(--primary-blue);
        font-size: 18px;
        transition: all 0.3s ease;
      }
      .faq-header h4 {
        font-size: inherit !important;
        font-weight: inherit !important;
        margin: 0 !important;
        padding: 0 !important;
        color: inherit !important;
        line-height: 1.4 !important;
        display: inline-block !important;
      }
      .faq-item.active { 
        border-color: transparent; 
        box-shadow: 0 20px 40px rgba(10,25,47,0.08); 
      }
      .faq-item.active .faq-header { 
        background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); 
        color: #fff; 
      }
      .faq-item.active .faq-header i { transform: rotate(45deg); color: var(--accent-yellow); }
      .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 40px;
        background: #fff;
      }
      .faq-item.active .faq-content { max-height: 600px; padding: 30px 40px 45px; border-top: 1px solid #F1F5F9; }

      /* --- Utilities & Enhancements --- */
      .text-yellow { color: var(--accent-yellow) !important; }
      .text-white { color: #ffffff !important; }
      .text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
      .bg-soft { background: #F8FAFC; }
      .bg-light-textured { background: #F1F5F9; position: relative; }
      
      .seo-blocks { background: #fff; padding-top: 60px; padding-bottom: 60px; }
      .seo-blocks h3 { font-size: 22px; color: var(--primary-blue); font-weight: 800; margin-top: 35px; margin-bottom: 15px; position: relative; padding-left: 15px; }
      .seo-blocks h3::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 4px; background: var(--accent-yellow); border-radius: 4px; }
      .seo-blocks p { font-size: 16px; color: #475569; margin-bottom: 20px; line-height: 1.8; font-weight: 400; }

      /* --- Utility Classes for missing components --- */
      .flex-center { display: flex; justify-content: center; align-items: center; }
      .size-70 { width: 70px; height: 70px; }
      .size-50 { width: 50px; height: 50px; }
      .rounded-full { border-radius: 50%; }
      .bg-accent-yellow { background-color: var(--accent-yellow) !important; }
      .text-primary-blue { color: var(--primary-blue) !important; }
      .bg-blue-1-05 { background-color: rgba(10, 25, 47, 0.05); }
      .fw-800 { font-weight: 800; }
      .text-24 { font-size: 24px; }
      .shadow-lg { box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4); }
      .relative { position: relative; }
      .z-3 { z-index: 3; }

      /* --- Slide Up Form --- */
      .form-box {
        box-shadow: 0 -20px 50px rgba(10, 25, 47, 0.2);
      }
      .form-box form {
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-top: 5px solid var(--accent-yellow);
      }
      .close-btn {
        position: absolute;
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        background: #fff;
        border: 2px solid var(--accent-yellow);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      .close-btn:hover { background: var(--accent-yellow); color: #fff; transform: translateX(-50%) scale(1.1); }
      .form-box input, .form-box textarea {
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        transition: all 0.3s;
      }
      .form-box input:focus, .form-box textarea:focus {
        border-color: var(--accent-yellow);
        outline: none;
        box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
        background: #fff;
      }

      /* --- Mobile Responsive Fixes --- */
      @media (max-width: 768px) {
        .hero-section { min-height: 60vh; padding: 120px 0 80px; }
        .hero-section h1 { font-size: 36px !important; line-height: 1.3 !important; }
        .hero-section p { font-size: 16px !important; }
        .section-title { font-size: 32px; }
        .feature-box { padding: 30px 25px; }
        .cta-planning-box { padding: 40px 30px; border-radius: 24px; text-align: center; justify-content: center; }
        .cta-planning-box h3 { font-size: 26px; }
        .btn-premium { width: 100%; padding: 18px 20px; }
        .text-content { font-size: 16px; }
        .faq-header { padding: 20px 25px; font-size: 16px; }
        .faq-item.active .faq-content { padding: 20px 25px 30px; }
        .service-content { padding: 25px 20px; }
        .pricing-table th, .pricing-table td { padding: 15px; font-size: 14px; }
      }
