        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f4f7fc;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.5;
        }



        /* main content styling (identical to given blade styles but self-contained) */
        .page-content-section {
            padding: 3rem 1rem;
            flex: 1;
        }

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

        .content-container {
            background: white;
            border-radius: 28px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
            padding: 2rem 2rem 2.5rem;
        }

        /* Main heading style */
        .ad-headline {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
            border-left: 6px solid #c91a2c;
            padding-left: 1.2rem;
        }

        .subhead {
            color: #475569;
            margin-bottom: 2.5rem;
            font-size: 1rem;
            border-left: 6px solid #c91a2c;
            padding-left: 1.2rem;
            margin-top: 0.25rem;
        }

        /* Grid Layout for sections */
        .ad-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0 1.5rem;
        }

        .ad-card {
            background: #fefefe;
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.2s ease;
            border: 1px solid #eef2f6;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
        }

        .ad-card:hover {
            border-color: #cbd5e1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #0f172a;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 0.75rem;
        }

        .card-title i {
            color: #c91a2c;
            font-size: 1.5rem;
        }

        .contact-item {
            margin-bottom: 1rem;
            padding: 0.4rem 0;
        }

        .contact-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: #0f172a;
            display: block;
        }

        .contact-role {
            font-size: 0.8rem;
            color: #c91a2c;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-bottom: 0.2rem;
        }

        .contact-email,
        .contact-number {
            font-size: 0.9rem;
            color: #1e40af;
            text-decoration: none;
            word-break: break-all;
            display: inline-block;
            margin-top: 4px;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        .tollfree-block {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1rem 1.2rem;
            margin-top: 1rem;
            border-left: 4px solid #c91a2c;
        }

        .tollfree-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: 0.5px;
        }

        hr {
            margin: 1rem 0;
            border: 0;
            height: 1px;
            background: #e2e8f0;
        }

        /* Extracted Inline Styles */
        .tollfree-block-highlight {
            background: #fff6e8;
            border-left-color: #e67e22;
        }
        .icon-globe-highlight {
            color: #e67e22;
        }
        .link-highlight {
            color: #c91a2c;
            font-weight: 500;
        }
        .info-note {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #475569;
        }
        .address-text {
            font-size: 0.9rem;
            display: block;
            margin-top: 4px;
        }
        .mt-12px {
            margin-top: 12px;
        }
        .mt-8px {
            margin-top: 8px;
        }

        /* responsive fine-tuning */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .nav-links {
                gap: 1.2rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .content-container {
                padding: 1.5rem;
            }

            .ad-headline {
                font-size: 1.8rem;
            }

            .card-title {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .ad-grid {
                grid-template-columns: 1fr;
            }

            .contact-email {
                font-size: 0.8rem;
            }
        }
