    <style>

/* General body styles */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0 !important;
            padding: 0;
            background-color: #f8f9fa;
            line-height: 1.6;
        }

        /* Modern Header */
        header {
            background-color: #0AB5B7; /* Main brand color */
            color: white;
            padding: 20px 40px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        /* Logo and main title */
        header h1 {
            margin: 0;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Navigation styles */
        header nav {
            margin-top: 20px;
        }

        header nav a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-size: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 10px 15px;
            border-radius: 5px;
            display: inline-block;
            transition: background-color 0.3s, transform 0.3s;
        }

        header nav a:hover {
            background-color: #028E92; /* Slightly darker shade for hover */
            transform: scale(1.05); /* Slight zoom effect */
        }

        header nav a.active {
            background-color: #006F72; /* Active link color */
        }

        /* Banner Section */
        .banner {
            background-image: url('bannerKuburat.jpg'); /* Ensure path is correct */
            background-size: cover;
            background-position: center top; /* Anchor image to the top */
            background-attachment: fixed; /* Keeps image position stable on scroll */
            color: white;
            text-align: center;
            padding: 80px 20px;
            font-size: 36px;
            font-weight: 700;
            position: relative;
            min-height: 300px; /* Min height of 300px for the banner */
        }

        .banner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4); /* Dark overlay to make text more readable */
        }

        .banner-text {
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main content section */
        .main-content {
            padding: 60px 40px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .main-content h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .main-content p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .cta-button {
            background-color: #28a745;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
            display: inline-block;
            transition: background-color 0.3s, transform 0.3s;
        }

        .cta-button:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }

        /* Footer styles */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            header {
                padding: 20px 15px;
            }

            header h1 {
                font-size: 28px;
            }

            header nav {
                text-align: center;
            }

            header nav a {
                margin: 10px 0;
                display: inline-block;
            }

            .banner {
                padding: 60px 20px;
            }

            .banner-text {
                font-size: 1.2rem;
            }

            .main-content {
                padding: 40px 20px;
            }

            .cta-button {
                padding: 12px 24px;
            }
        }
    </style>

