/* Cleaned page-specific CSS. Global navbar/marquee/promo/OHSEM/WhatsApp moved to assets/css/global.css */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 60px 0;
        }

        .btn-primary {
            display: inline-block;
            background: #c9002c;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #a30023;
            transform: translateY(-2px);
        }

        .page-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 40px 0 10px 0;
            color: #1e2a3e;
        }

        .sub-headline {
            color: #666;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .video-container {
            background: #000;
            border-radius: 28px;
            overflow: hidden;
            margin: 30px 0 50px;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
            aspect-ratio: 16 / 9;
        }

        .video-container video,
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .why-section {
            background: #f9fafb;
            border-radius: 32px;
            padding: 40px 48px;
            margin: 40px 0 60px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }

        .why-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: #a50034;
            border-left: 6px solid #a50034;
            padding-left: 20px;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 1.05rem;
            line-height: 1.5;
            color: #1f2937;
        }

        .benefit-item i.fa-check-circle {
            color: #25D366;
            font-size: 1.5rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .benefit-text strong {
            font-weight: 700;
            color: #111;
        }

        .footer {
            background: #971D37;
            color: #fff;
            padding: 100px 0 28px;
            position: relative;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.8fr 1fr 1.3fr;
            gap: 50px;
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 32px;
            align-items: start;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a,
        .footer-contact-item {
            color: #fff;
            font-size: 17px;
            line-height: 1.45;
        }

        .footer-intro-title {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 24px;
            max-width: 360px;
        }

        .footer-intro-desc {
            max-width: 360px;
            margin-bottom: 28px;
        }

        .footer-bullet-list a,
        .footer-bullet-list .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            color: #fff;
        }

        .footer-bullet-list a::before {
            content: "●";
            font-size: 12px;
            line-height: 1.8;
            flex-shrink: 0;
        }

        .footer-contact-item i {
            width: 20px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .footer-branch-label {
            font-weight: 700;
            margin: 6px 0 4px 0;
        }

        .footer-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
                gap: 12px;
    background: #fff;
    color: #111 !important;
            min-width: 330px;
            padding: 16px 28px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            margin-top: 28px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }

        @media (max-width: 1100px) {.footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
}

        @media (max-width: 768px) {.why-section {
                padding: 28px 20px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .benefit-item {
                font-size: 0.95rem;
            }

            .footer {
                padding: 50px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 20px;
            }

            .footer-intro-title {
                font-size: 24px;
                max-width: 100%;
            }

            .footer-intro-desc {
                max-width: 100%;
            }

            .footer-col p,
            .footer-col a,
            .footer-contact-item {
                font-size: 16px;
            }

            .footer-whatsapp-btn {
                min-width: 100%;
                width: 100%;
            }

            .footer-bottom {
                font-size: 16px;
                margin-top: 34px;
            }
}
