/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background-color: #2C2F33;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navbar Styling */
header nav {
    background: rgba(47, 49, 54, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

header nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    color: #7289DA;
    font-weight: bold;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #99AAB5;
    text-decoration: none;
    padding: 8px 15px;
    transition: background 0.3s ease;
}

header ul li a:hover {
    background-color: rgba(114, 137, 218, 0.2);
    border-radius: 5px;
}

/* Main Content Styling */
main.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(47, 49, 54, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #7289DA;
    border-bottom: 2px solid #7289DA;
    padding-bottom: 10px;
}

main h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #99AAB5;
}

main p, main ul {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

main ul {
    list-style: disc;
    margin-left: 40px;
}

/* Footer Styling */
footer {
    background: rgba(47, 49, 54, 0.8);
    padding: 20px;
    text-align: center;
    color: #99AAB5;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #7289DA;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 10px;
    font-size: 14px;
}
