/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px; /* Adds padding to the body content */
}

a {
    text-decoration: none;
    color: #1e90ff;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #1e90ff;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav ul li {
    font-size: 18px;
}

nav ul li a {
    color: white;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

/* Main Section */
main {
    margin: 40px 0;
}

h2 {
    font-size: 28px;
    color: #1e90ff;
    margin-bottom: 15px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section p {
    font-size: 18px;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
}

ul li {
    margin-bottom: 10px;
}

footer {
    background-color: #2d3436;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0; /* Remove padding on smaller screens */
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    section p {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    body {
        padding: 0 50px; /* Adds padding to the body content in desktop view */
    }
}
