body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eaeaea; /* Changed background color */
            color: #333;
        }

        header {
            background: url("header-background.jpg") no-repeat center center/cover;
            color: #fff;
            padding: 2em;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        header h1 {
            position: relative;
            font-size: 3em;
            margin: 0;
            z-index: 2;
        }

        header p {
            position: relative;
            font-size: 1.5em;
            margin: 0;
            z-index: 2;
        }

        header img {
            margin-top: 20px;
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        nav {
            background-color: #003366;
            color: #fff;
            padding: 0.5em 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        nav ul li {
            display: inline;
            margin: 0 15px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 0.5em 1em;
            display: inline-block;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #004080;
            border-radius: 5px;
        }

        main {
            padding: 2em;
            max-width: 1200px;
            margin: auto;
        }

        .section {
            margin-bottom: 2em;
            padding: 2em;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .highlight {
            background: #fff4e5;
            border-left: 5px solid #ff6f61;
            padding: 1em;
            margin-bottom: 1em;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .highlight h2 {
            color: #ff6f61;
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            margin-top: 10px;
            background-color: #ff6f61;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #e55b4e;
        }

        footer {
            background-color: #003366;
            color: #fff;
            text-align: center;
            padding: 1em;
            position: relative;
            bottom: 0;
            width: 100%;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            nav ul li {
                display: block;
                margin: 10px 0;
            }
        }

        /* Flexbox for About Section */
        .about-content {
            display: flex; /* Use flexbox for alignment */
            align-items: flex-start; /* Align items to the top */
            margin-top: 1em; /* Space between heading and content */
        }

        .about-image {
            width: 200px; /* Set image width */
            height: auto; /* Maintain aspect ratio */
            margin-right: 20px; /* Space between image and text */
            border-radius: 8px; /* Optional: Adds border-radius to the image */
        }

        .about-text {
            flex: 1; /* Allow text to take remaining space */
        }
