/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #343a40;
}

.navbar-brand {
    font-weight: bold;
    color: white;
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1e3c72, #2a5298); /* A subtle blue gradient */
    color: white;
    text-align: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.cta-button {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button:hover {
    background: #0056b3;
}

/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

/* Image Styling */
img {
    max-width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
