
        .content-section {
            padding: clamp(60px, 12vh, 100px) 5%;
        }

        .content-section.white {
            background: #ffffff;
        }

        .content-section.gray {
            background: #f8f9fa;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: clamp(40px, 8vh, 60px);
        }

        .section-label {
            display: inline-block;
            color: #1E5FD8;
            font-size: clamp(13px, 1.5vw, 15px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            padding: 8px 22px;
            background: #f0f4ff;
            border-radius: 6px;
            border: 1px solid #1E5FD8;
        }

        .section-title {
            color: #0B2C6B;
            font-size: clamp(28px, 4.5vw, 42px);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .section-intro {
            color: #495057;
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: clamp(20px, 3vw, 30px);
            margin-top: clamp(40px, 8vh, 60px);
        }

        .info-card {
            background: #ffffff;
            padding: clamp(25px, 4vw, 35px);
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border-color: #1E5FD8;
        }

        .card-icon {
            width: 55px;
            height: 55px;
            background: #1E5FD8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
        }

        .card-title {
            color: #0B2C6B;
            font-size: clamp(18px, 2.2vw, 22px);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .card-text {
            color: #495057;
            font-size: clamp(15px, 1.7vw, 17px);
            line-height: 1.6;
        }

        /* List Styles */
        .info-list {
            list-style: none;
            display: grid;
            gap: 15px;
            margin-top: clamp(30px, 6vh, 45px);
        }

        .info-list li {
            color: #495057;
            font-size: clamp(15px, 1.8vw, 17px);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 18px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #1E5FD8;
            transition: all 0.3s ease;
        }

        .info-list li:hover {
            background: #e9ecef;
            transform: translateX(8px);
        }

        .info-list li::before {
            content: '•';
            color: #1E5FD8;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Timeline Cards */
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
            gap: clamp(20px, 3vw, 30px);
            margin-top: clamp(40px, 8vh, 60px);
        }

        .timeline-card {
            background: white;
            padding: clamp(25px, 4vw, 30px);
            border-radius: 12px;
            border: 2px solid #1E5FD8;
            text-align: center;
            transition: all 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(30, 95, 216, 0.2);
        }

        .timeline-icon {
            font-size: clamp(36px, 5vw, 42px);
            margin-bottom: 15px;
        }

        .timeline-title {
            color: #0B2C6B;
            font-size: clamp(18px, 2.2vw, 22px);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .timeline-text {
            color: #495057;
            font-size: clamp(15px, 1.7vw, 17px);
            line-height: 1.6;
        }

        /* Highlight Box */
        .highlight-box {
            padding: clamp(30px, 5vw, 40px);
            border-radius: 12px;
            margin-top: clamp(40px, 8vh, 60px);
            text-align: center;
        }

        .highlight-box.blue {
            background: #f0f4ff;
            border: 2px solid #1E5FD8;
        }

        .highlight-box.yellow {
            background: #fff8e1;
            border: 2px solid #ffc107;
        }

        .highlight-icon {
            font-size: clamp(40px, 6vw, 50px);
            margin-bottom: 20px;
        }

        .highlight-title {
            color: #0B2C6B;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .highlight-text {
            color: #495057;
            font-size: clamp(15px, 1.8vw, 18px);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* CTA Section */
        .cta-section {
            padding: clamp(60px, 12vh, 100px) 5%;
            background: #1E5FD8;
            text-align: center;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-heading {
            color: #FFFFFF;
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: clamp(16px, 2vw, 19px);
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: clamp(12px, 1.8vh, 14px) clamp(24px, 3.5vw, 30px);
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(14px, 1.6vw, 16px);
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .cta-btn-primary {
            background: white;
            color: #1E5FD8;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            background: #f8f9fa;
        }

        .cta-btn-primary::after {
            content: '→';
            font-size: 1.1em;
            transition: transform 0.3s ease;
        }

        .cta-btn-primary:hover::after {
            transform: translateX(4px);
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
        }

        .cta-btn-secondary::before {
            content: '📧';
            font-size: 1em;
        }

        .cta-footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .company-name {
            color: white;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .company-tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(15px, 1.8vw, 17px);
        }

        /* ================= RESPONSIVE ================= */

        @media screen and (max-width: 640px) {
            .hero-section,
            .content-section,
            .cta-section {
                padding: clamp(40px, 10vh, 60px) 5%;
            }

            .cards-grid,
            .timeline-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }