        body {
           font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
           line-height: 1.7;
        } 

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 5% 80px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
            border-bottom: 4px solid #d96d00;
            padding-bottom: 20px;
        }

        .last-updated {
            color: #7f99ba;
            font-size: 0.95rem;
            margin-bottom: 50px;
            font-weight: 500;
        }

        .intro {
            background-color: #f8f9fa;
            border-left: 4px solid #7f99ba;
            padding: 25px 30px;
            margin-bottom: 50px;
            font-size: 1.05rem;
            color: #333;
        }

        .section {
            margin-bottom: 45px;
        }

        .section h2 {
            font-size: 1.6rem;
            color: #d96d00;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #7f99ba;
        }

        .section h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section p {
            margin-bottom: 15px;
            color: #333;
            text-align: justify;
        }

        .section ul {
            margin: 20px 0 20px 30px;
            color: #333;
        }

        .section li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }

        .section li::marker {
            color: #d96d00;
        }

        .highlight-box {
            background-color: #fff8f0;
            border: 2px solid #d96d00;
            border-radius: 8px;
            padding: 20px 25px;
            margin: 25px 0;
        }

        .highlight-box h4 {
            color: #d96d00;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .contact-section {
            background-color: #f0f4f8;
            border-radius: 8px;
            padding: 35px;
            margin-top: 50px;
            border-left: 4px solid #d96d00;
        }

        .contact-section h2 {
            color: #000000;
            margin-bottom: 20px;
        }

        .contact-section p {
            margin-bottom: 10px;
        }

        .contact-section a {
            color: #d96d00;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-section a:hover {
            color: #7f99ba;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .section h2 {
                font-size: 1.4rem;
            }

            .container {
                padding: 40px 5% 60px;
            }

            header h1 {
                font-size: 1.2rem;
            }
        }