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

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: #0077cc;
    font-size: 2.5rem;
}

header p {
    font-size: 1.1rem;
    color: #555;
}

/* Section Styles */
.info-section {
    margin-bottom: 30px;
}

.info-section h2 {
    font-size: 1.8rem;
    color: #0077cc;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.info-section p,
.info-section ul {
    margin-bottom: 10px;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

.note {
    color: #909090;
    font-size: 0.9rem;
}

.note.small {
    font-size: 0.8rem;
}

/* Links */
a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}