/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between; /* Space between the left and right sections */
    align-items: center;
    padding: 1rem 2rem;
/*    background-color: #003366; /* Deep Blue */
    background-color: black;
    color: white;
}

.navbar .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .menu li {
    margin-left: 1.5rem;
    position: relative;
}

/* Ensure the second menu aligns to the right */
.navbar .menu.right {
    margin-left: auto; /* Pushes this menu to the right */
}

/* Hover effect on the entire navbar section */
.navbar .menu li:hover {
    background-color: dimgray; /* Lighter blue for hover effect */
}

.navbar .menu li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

/* Link hover effect */
.navbar .menu li a:hover {
    color: maroon; /* Tomato Red text color on hover */
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: darkslategray;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .cta-button {
    padding: 10px 20px;
    background-color: maroon; /* Firebrick Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.hero .cta-button:hover {
    background-color: maroon; /* Tomato Red */
}

/* Content Section */
.content {
    padding: 2rem 1rem;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: darkslategray;
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .menu {
        flex-direction: column;
        width: 100%;
    }

    .navbar .menu li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

