
        /* Root Colors */
        :root {
            --primary-color: #3a8b68; /* greenish */
            --secondary-color: #007749; /* darker green */
            --accent-color: #ffcc33; /* yellow */
            --background-color: #f5f5f5;
            --text-color: #333;
            --heading-color: #091E3E;
            --breadcrumb-color: #555;
            --breadcrumb-hover: var(--primary-color);
        }

       
        /* Content Container */
        .content-container {
            max-width: 1300px;
            margin: 30px auto;
            padding: 20px;
            
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .content-container {
                margin: 20px;
                padding: 15px;
            }
        }

        /* Sections */
        .section {
            margin-bottom: 25px;
        }

        .section h2 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
            padding-bottom: 4px;
        }

        .section p {
            font-size: 1rem;
            margin-bottom: 10px;
            text-align: justify;
        }

        /* Contact Link */
        .contact-link {
            color: var(--primary-color) !important;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-link:hover {
            text-decoration: underline !important;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .container {
                margin: 20px;
                padding: 15px;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .section h2 {
                font-size: 1.1rem;
            }
        }
   