/* Global Styles */
@charset "UTF-8";


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    color: #343a40;
}

ul {
    list-style-type: disc;
    margin: 0 0 20px 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #007bff;
    color: white;
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin: 0;
}

header p {
    font-size: 18px;
    margin: 10px 0 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Styles */
section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

section h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

section p {
    font-size: 16px;
    color: #555;
}

/* List Styles */
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Button Styles */
a.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    color: white;
    background-color: #007bff;
    margin-top: 15px;
}

a.btn-secondary {
    background-color: #6c757d;
}

a.btn:hover, a.btn-secondary:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Link Styling */
ul li a {
    font-weight: bold;
    color: #007bff;
}

ul li a:hover {
    color: #0056b3;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    section {
        padding: 15px;
    }

    ul li {
        font-size: 14px;
    }

    a.btn, a.btn-secondary {
        font-size: 14px;
        padding: 8px 16px;
    }
}
