        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f4f7fa;
        }

        /* Top Menu */
        .top-menu {
            background: #023e8a;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }

        .top-menu a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
            font-weight: bold;
        }

        .menu-links a:hover {
            text-decoration: underline;
        }


        /* Sections */
        section {
            background: white;
            width: 90%;
            max-width: 1000px;
            margin: 25px auto;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 0 12px rgba(0,0,0,0.1);
        }

        h2 {
            color: #0077b6;
            margin-bottom: 10px;
        }

        .section-img {
            width: 100%;
            height: 220px;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: #03045e;
            color: white;
            text-align: center;
            padding: 18px;
            margin-top: 30px;
        }

        /* Mobile Adjustments */
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 16px;
            }
        }
