body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;

    /* Beautiful dark gradient background */
    background: linear-gradient(
        rgba(153, 25, 25, 0.7),
        rgba(75, 165, 143, 0.7)
    ),
    url("Picture/Aboutbg.jpg");   

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* LOGO */

.logo {
    position: absolute;
    top: 15px;
    left: 25px;
    width: 70px;
}

.logo img {
    width: 100%;
}

/* NAVBAR */

.nav {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    background: rgba(0,0,0,0.65);
    padding: 12px 30px;
    border-radius: 4px;
}

.nav a {
    text-decoration: none;
    color: rgb(243, 242, 242);      /* Home white */
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #00cc33;
}

/* ACTIVE PAGE */

.active {
    color: #00cc33;    /* About US green */
}

/* CONTENT BOX */

.content-box {
    max-width: 700px;
    margin: 90px auto;
    background: rgba(240, 170, 106, 0.95);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content-box h2 {
    margin-top: 0;
}

.content-box p {
    text-align: justify;
    line-height: 1.6;
}

/* FOOTER */

footer {
    text-align: center;
    margin: 40px 0;
    color: rgb(15, 15, 15);
    font-size: 14px;
}