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

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Section - Styling */
section {
    margin-bottom: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
    text-align: left;
}

section p, section ul {
    font-size: 1.1em;
    margin-bottom: 10px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}
/* Navigation Bar Styling */
nav {
    background-color: #007bff; /* Background color of the nav bar */
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white; /* Link color */
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f1f1f1; /* Hover effect */
}
/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    border-radius: 10px;
    margin-top: 20px;
}

footer p {
    font-size: 1em;
}

/* Button Styling */
a.button, button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

a.button:hover, button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section h2 {
        font-size: 1.5em;
    }

    section p, section ul {
        font-size: 1em;
    }

    footer p {
        font-size: 0.9em;
    }
}
