/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    color: #0066cc;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 15px;
}

h2 {
    color: #0052a3;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #0066cc;
    padding-left: 15px;
}

/* Paragraphs */
p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 10px;
    font-size: 16px;
}

ul li {
    color: #0066cc;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #0066cc;
    transition: all 0.3s ease;
}

a:hover {
    color: white;
    background-color: #0066cc;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 3px solid #0066cc;
}

footer p {
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    p {
        font-size: 14px;
    }
}
