/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #e3f2fd; /* Soft Blue */
    color: #212529; /* Dark Gray */
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1565c0; /* Dark Blue */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0d47a1;
}

.navbar h1 {
    color: white;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Container */
.container {
    max-width: 80%;
    margin: 100px auto 50px;
    padding: 30px;
    background:  lightblue;
    border: 2px solid #1565c0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2, h3 {
    color: #0d47a1;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
}

/* Paragraphs */
p {
    margin-bottom: 10px;
}

/* Lists */
ul, ol {
    margin: 10px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0d47a1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #1565c0;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1565c0;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #0d47a1;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


