*{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial, Helvetica, sans-serif;
        }

        body{
            background:skyblue;
        }

        /* Navigation Bar */
        nav{
            background:#003366;
            color:white;
            display:flex;
            justify-content:space-between;
            align-items:center;
            padding:15px 50px;
        }

        nav h2{
            color:white;
        }

        nav ul{
            list-style:none;
            display:flex;
        }

        nav ul li{
            margin-left:25px;
        }

        nav ul li a{
            color:white;
            text-decoration:none;
            font-weight:bold;
        }

        nav ul li a:hover{
            color:#FFD700;
        }

        /* Hero Section */
        .hero{
            height:400px;
            background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
            url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1");
            background-size:cover;
            background-position:center;
            color:white;
            display:flex;
            justify-content:center;
            align-items:center;
            flex-direction:column;
            text-align:center;
        }

        .hero h1{
            font-size:50px;
        }

        .hero p{
            margin-top:15px;
            font-size:20px;
        }

        .btn{
            margin-top:20px;
            padding:12px 25px;
            background:#FFD700;
            color:#003366;
            text-decoration:none;
            font-weight:bold;
            border-radius:5px;
        }

        /* About Section */
        section{
            padding:50px;
        }

        .about{
            background:white;
            border-radius:10px;
            box-shadow:0 0 10px rgba(0,0,0,.1);
        }

        .about h2{
            color:#003366;
            margin-bottom:20px;
        }

        .about p{
            line-height:1.8;
        }

        footer{
            background:#003366;
            color:white;
            text-align:center;
            padding:20px;
            margin-top:30px;
        }