  /* CSS for the header */
    .header {
        /* background-color: var(--background-color); */
        /* color: var(--default-color); */
        padding: 1rem;
        transition: all 0.5s;
        z-index: 997;
    }
    .header .header-container {
        background: var(--surface-color);
        border-radius: 10px;
        /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
        padding: 5px 25px;
        /* Flexbox to keep everything on one line */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .logo h1 {
        font-size: 24px;
        margin: 0;
        padding: 0;
    }
    .header .navmenu {
        margin-right: auto; /* Pushes the menu to the right */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .header .navmenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1px;
    }
    .header .navmenu a {
        text-decoration: none;
        /* color: #000; */
        padding: 10px 15px;
        border-radius: 5px;
        /* transition: background-color 0.3s, color 0.3s; */
    }

        .footer {
            font-size: 14px; /* Makes all base text smaller */
            color: #5a6672;   /* Softer text color than pure black */
        }

        /* Footer headings (e.g., "Useful Links", "Follow Us") */
        .footer h4 {
            font-size: 16px; /* Slightly smaller headings */
            font-weight: 600;  /* A bit bolder for hierarchy */
            color: #212529;   /* Darker color for headings */
        }

        /* The main site name in the footer */
        .footer .footer-info .sitename {
            font-size: 28px; /* Reduces the size of the main logo text */
        }

        /* The description paragraph */
        .footer .footer-info p {
            font-size: 14px;
            line-height: 1.6; /* Improves readability */
        }

        /* Links in the "Useful Links" column */
        .footer .footer-links ul li a {
            color: #5a6672;
            transition: 0.3s;
        }

        .footer .footer-links ul li a:hover {
            color: var(--color-primary); /* Uses your site's primary color on hover */
        }

        /* The social media icons */
        .footer .footer-social .social-links a {
            font-size: 18px; /* Slightly smaller icons */
        }

        /* The copyright text at the very bottom */
        .footer .footer-legal {
            font-size: 13px; /* Makes the legal text even smaller */
            background-color: #f8f9fa; /* A very light background for separation */
        }
    .about-intro-content {
        font-size: 18px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
    }