
        :root {
            --brand-navy: #001e3d;
            --brand-text-dark: #001c30;
            --body-text: #4a5568;
            --mint-green: #89ceaa;
            --mint-green-hover: #73be98;
            --white-btn-hover: #f1f5f9;
            --bg-light-blue: #f0f5fa;
            --bg-hero: linear-gradient(180deg, #ffffff 0%, #f6faf9 100%);
            --border-light: #e2e8f0;
            --brand-faq-red: #ef4444;
        }

       

        /* Generic Section Spacers */
        .page-divider {
            height: 1px;
            background-color: #f1f5f9;
            border: none;
            margin: 0;
        }

        /* Navigation Header */
        .navbar-brand {
            font-weight: 800;
            font-size: 26px;
            color: var(--brand-navy) !important;
            letter-spacing: -0.5px;
        }

        .nav-link {
            font-weight: 600;
            font-size: 14.5px;
            color: var(--body-text) !important;
            margin: 0 10px;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--brand-navy) !important;
        }

        /* ==========================================================================
           SECTION 1: HERO TEMPLATE SECTION
           ========================================================================== */
        .section-hero {
            padding: 150px 0 90px 0;
            background: var(--bg-hero);
            position: relative;
        }

        .hero-title {
            font-weight: 900;
            font-size: 52px;
            line-height: 1.15;
            color: var(--brand-text-dark);
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .hero-description {
            font-size: 16px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
            margin-bottom: 35px;
            max-width: 510px;
        }

        .btn-wrapper {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-download {
            background-color: var(--mint-green);
            color: var(--brand-text-dark);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 14px 28px;
            border-radius: 30px;
            border: none;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(137, 206, 170, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-download:hover {
            background-color: var(--mint-green-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(137, 206, 170, 0.35);
            color: var(--brand-text-dark);
        }

        .btn-contact {
            background-color: #ffffff;
            color: var(--brand-text-dark);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 14px 28px;
            border-radius: 30px;
            border: 1.5px solid var(--border-light);
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-contact:hover {
            background-color: var(--white-btn-hover);
            border-color: #cbd5e1;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            color: var(--brand-text-dark);
        }

        .illustration-wrap {
            position: relative;
            width: 100%;
            max-width: 580px;
            margin: 0 auto;
            transition: transform 0.5s ease;
        }

        .illustration-wrap:hover {
            transform: translateY(-4px);
        }

        /* ==========================================================================
           SECTION 2: WHAT IS A QUOTATION FORMAT & FEATURES
           ========================================================================== */
        .definition-section {
            padding: 85px 0 60px 0;
            background-color: #ffffff;
        }

        .definition-title {
            font-weight: 800;
            font-size: 34px;
            color: var(--brand-text-dark);
            letter-spacing: -0.8px;
            margin-bottom: 24px;
        }

        .definition-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--body-text);
            font-weight: 500;
            margin-bottom: 20px;
        }

        .features-section {
            padding: 10px 0 80px 0;
            background-color: #ffffff;
        }

        .features-main-title {
            font-weight: 800;
            font-size: 30px;
            color: var(--brand-text-dark);
            letter-spacing: -0.8px;
            margin-bottom: 50px;
        }

        .feature-card {
            background-color: var(--bg-light-blue);
            border: none;
            border-radius: 20px;
            padding: 45px 40px;
            height: 100%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 30, 61, 0.05);
        }

        .feature-icon-badge {
            width: 42px;
            height: 42px;
            background-color: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 4px 10px rgba(0, 30, 61, 0.03);
        }

        .feature-icon-badge svg {
            width: 18px;
            height: 18px;
            fill: var(--brand-navy);
        }

        .feature-card-title {
            font-weight: 700;
            font-size: 18px;
            color: var(--brand-text-dark);
            margin-bottom: 16px;
        }

        .feature-card-text {
            font-size: 14px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
            margin: 0;
        }

        /* ==========================================================================
           SECTION 3: STEP GUIDE & KEY HIGHLIGHTS
           ========================================================================== */
        .steps-section {
            padding: 35px 0 10px 0;
            background-color: #ffffff;
        }

        .steps-main-title {
            font-weight: 800;
            font-size: 40px;
            line-height: 1.25;
            color: var(--brand-text-dark);
            letter-spacing: -1px;
            max-width: 440px;
        }

        .step-block {
            margin-bottom: 35px;
        }

        .step-number {
            font-size: 18px;
            font-weight: 800;
            color: var(--brand-text-dark);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 14.5px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
            max-width: 580px;
        }

        /* Highlights block design */
        .highlights-section {
            padding: 60px 0 95px 0;
            background-color: #ffffff;
        }

        .highlights-main-title {
            font-weight: 800;
            font-size: 34px;
            color: var(--brand-text-dark);
            letter-spacing: -0.8px;
            margin-bottom: 18px;
        }

        .highlights-description {
            font-size: 15px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
            max-width: 820px;
            margin: 0 auto 55px auto;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--brand-text-dark);
            margin-bottom: 24px;
            transition: transform 0.2s ease;
        }

        .highlight-item:hover {
            transform: translateX(4px);
        }

        .check-icon-wrap {
            margin-right: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .check-icon-wrap svg {
            width: 18px;
            height: 18px;
            stroke: var(--brand-navy);
        }

        /* ==========================================================================
           SECTION 4: DIFFERENT TYPES OF QUOTATION FORMATS (EXACT SCREENSHOT LAYOUT)
           ========================================================================== */
        .different-types-section {
            padding: 40px 0;
            background-color: #f8fafc;
        }

        .types-title {
            font-weight: 800;
            font-size: 36px;
            color: var(--brand-text-dark);
            letter-spacing: -0.8px;
            margin-bottom: 18px;
        }

        .types-description {
            font-size: 15px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
            max-width: 860px;
            margin: 0 auto 40px auto;
        }

        .illustration-types-wrap {
            width: 100%;
            max-width: 320px;
            margin: 0 auto 50px auto;
        }

        .types-list-wrap {
            max-width: 880px;
            margin: 0 auto;
        }

        .type-item-block {
            margin-bottom: 26px;
            text-align: left;
        }

        .type-item-text {
            font-size: 15px;
            line-height: 1.65;
            color: var(--body-text);
            margin: 0;
        }

        .type-item-title {
            font-weight: 800;
            color: var(--brand-text-dark);
        }

        /* FAQ Layout structure */
        .faq-section {
            padding: 95px 0;
            background-color: #ffffff;
        }

        .faq-main-title {
            font-weight: 800;
            font-size: 40px;
            color: var(--brand-text-dark);
            letter-spacing: -1.2px;
            margin-bottom: 35px;
        }

        .faq-accordion-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-card-item {
            background-color: #ffffff;
            border: 1.5px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-card-item:hover {
            border-color: #cbd5e1;
            box-shadow: 0 4px 15px rgba(0, 30, 61, 0.03);
        }

        .faq-header-button {
            width: 100%;
            padding: 22px 28px;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 15.5px;
            color: var(--brand-text-dark);
            outline: none;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .faq-header-button:focus {
            outline: none;
        }

        .faq-arrow-icon {
            font-size: 16px;
            color: #94a3b8;
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-card-item.active-item {
            border-color: var(--mint-green);
            box-shadow: 0 6px 20px rgba(137, 206, 170, 0.15);
        }

        .faq-card-item.active-item .faq-arrow-icon {
            transform: rotate(45deg);
            color: var(--brand-navy);
        }

        .faq-body-content {
            padding: 0 28px 24px 28px;
            font-size: 14.5px;
            line-height: 1.65;
            color: var(--body-text);
            font-weight: 500;
        }

        .faq-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }

        .faq-card-item.active-item .faq-collapse {
            max-height: 300px;
            opacity: 1;
        }

        .faq-sidebar-wrap {
            padding-left: 30px;
        }

        .sidebar-tag {
            font-size: 13.5px;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .sidebar-text {
            font-size: 14.5px;
            line-height: 1.65;
            color: var(--body-text);
            margin-bottom: 35px;
            font-weight: 500;
        }

        .sidebar-illustration {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
        }

        /* ==========================================================================
           SECTION 5: LAST CALL TO ACTION BANNER & FOOTER SECTION
           ========================================================================== */
        .cta-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--brand-navy) 0%, #003366 100%);
            border-radius: 28px;
            padding: 60px 45px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 30, 61, 0.12);
        }

        .cta-title {
            font-weight: 800;
            font-size: 36px;
            letter-spacing: -0.8px;
            margin-bottom: 18px;
            color: #ffffff;
        }

        .cta-desc {
            font-size: 16px;
            line-height: 1.65;
            color: #cbd5e1;
            margin-bottom: 35px;
            max-width: 620px;
        }

        .site-footer {
            background-color: #001224;
            color: #94a3b8;
            padding: 70px 0 30px 0;
            font-size: 14px;
        }

        .footer-brand {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            display: inline-block;
        }

        .footer-desc {
            line-height: 1.65;
            margin-bottom: 24px;
            max-width: 320px;
        }

        .footer-heading {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--mint-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 50px;
            padding-top: 25px;
            font-size: 13.5px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            margin-right: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--mint-green);
            color: var(--brand-text-dark);
            transform: translateY(-2px);
        }

        /* Responsive Breakpoints */
        @media (max-width: 991.98px) {
            .hero-title { font-size: 38px; text-align: center; }
            .hero-description { text-align: center; margin-left: auto; margin-right: auto; }
            .btn-wrapper { justify-content: center; margin-bottom: 50px; }
            .illustration-wrap { max-width: 480px; }
            .definition-title { font-size: 28px; text-align: center; margin-top: 40px; }
            .definition-text { text-align: center; font-size: 14.5px; }
            .features-main-title { font-size: 26px; margin-bottom: 35px; }
            .feature-card { padding: 35px 30px; }
            .steps-main-title { font-size: 30px; text-align: center; max-width: 100%; margin-bottom: 45px; }
            .step-block { text-align: left; padding-left: 15px; }
            .highlights-main-title { font-size: 28px; }
            .highlights-description { font-size: 14px; }
            .types-title { font-size: 30px; }
            .types-description { font-size: 14px; }
            .faq-main-title { font-size: 32px; text-align: center; }
            .faq-sidebar-wrap { padding-left: 0; margin-top: 60px; text-align: center; }
            .cta-card { text-align: center; padding: 45px 25px; }
            .cta-title { font-size: 28px; }
            .cta-desc { margin-left: auto; margin-right: auto; }
        }

        @media (max-width: 576px) {
            .section-hero { padding: 50px 0; }
            .hero-title { font-size: 30px; padding-top: 60px; }
            .hero-description { font-size: 14px; }
            .btn-download, .btn-contact { width: 100%; padding: 12px 20px; font-size: 13px; }
            .btn-wrapper { gap: 12px; }
            .definition-section { padding: 50px 0 40px 0; }
            .definition-title { font-size: 24px; }
            .features-section { padding: 30px 0 60px 0; }
            .features-main-title { font-size: 22px; }
            .feature-card { padding: 30px 25px; }
            .steps-section { padding: 50px 0 40px 0; }
            .steps-main-title { font-size: 24px; }
            .highlights-section { padding: 40px 0 60px 0; }
            .highlights-main-title { font-size: 24px; }
            .types-title { font-size: 24px; }
            .types-description { font-size: 13.5px; }
            .type-item-text { font-size: 14px; }
            .faq-main-title { font-size: 26px; }
            .faq-header-button { padding: 18px 20px; font-size: 14px; }
            .faq-body-content { padding: 0 20px 20px 20px; font-size: 13.5px; }
        }
  
  
   :root {
            --brand-dark-blue: #002347;
            --card-bg-blue: #eef5fc;
            --word-green: #10b981;
            --word-green-hover: #059669;
            --pdf-blue: #2563eb;
            --pdf-blue-hover: #1d4ed8;
            --excel-teal: #0d9488;
            --excel-teal-hover: #0f766e;
            --border-subtle: #dbeafe;
            --text-dark: #0f172a;
            --text-muted: #64748b;
        }

        body {
          font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background: #fdfdfd;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Main Section Heading */
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--brand-dark-blue);
            letter-spacing: -0.5px;
            margin-bottom: 40px;
        }

        /* Format Gallery Card Container */
        .format-card {
            background-color: var(--card-bg-blue);
            border-radius: 20px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
            border: 1px solid rgba(219, 234, 254, 0.8);
        }

        .format-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 30px rgba(0, 35, 71, 0.08);
        }

        /* White Inner Sheet Preview Frame */
        .preview-paper-frame {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 14px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            height: auto;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
        }

        /* Card Label Title */
        .format-card-title {
            font-weight: 700;
            font-size: 19px;
            color: var(--brand-dark-blue);
            margin-top: 18px;
            margin-bottom: 16px;
            text-align: center;
        }

        /* Action Buttons Wrapper */
        .btn-action-group {
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-download-fmt {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 8px;
            border: none;
            color: #ffffff !important;
            text-transform: uppercase;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            text-decoration: none !important;
        }

        .btn-word {
            background-color: var(--word-green);
        }
        .btn-word:hover {
            background-color: var(--word-green-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
        }

        .btn-pdf {
            background-color: var(--pdf-blue);
        }
        .btn-pdf:hover {
            background-color: var(--pdf-blue-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }

        .btn-excel {
            background-color: var(--excel-teal);
        }
        .btn-excel:hover {
            background-color: var(--excel-teal-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
        }

        /* Scaled Quotation Sheet Mockup Styling Inside Frame */
        .sheet-mockup {
            font-size: 8px;
            color: #334155;
            line-height: 1.25;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            user-select: none;
        }

        .sheet-header-bar {
            padding: 4px 6px;
            font-weight: bold;
            color: white;
            font-size: 9px;
            border-radius: 3px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sheet-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 6px;
            font-size: 7.5px;
        }

        .sheet-table th {
            background-color: #f1f5f9;
            padding: 3px 4px;
            border: 1px solid #cbd5e1;
            font-weight: 700;
        }

        .sheet-table td {
            padding: 3px 4px;
            border: 1px solid #e2e8f0;
        }

        .sheet-summary-box {
            margin-top: auto;
            border-top: 1px solid #cbd5e1;
            padding-top: 5px;
        }

        .brand-logo-tag {
            font-weight: 900;
            font-size: 10px;
            color: #002347;
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }
        .brand-logo-tag span {
            color: #22c55e;
        }

        @media (max-width: 768px) {
            .section-title { font-size: 24px; }
            .preview-paper-frame { height: auto; }
        }
        
        
        
        
        .container-fluid.px-3.px-md-4.my-2.redsize {
    width: 80%;
}