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

html {
  scroll-behavior: smooth;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 0.2em;
}

h2 {
    color: #34495e;
    font-size: 1.8em;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
}

section {
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h3 {
    margin-top: 0;
}

.info-block p {
    margin-bottom: 1em;
    text-align: justify;
}

.info-block strong {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00327e;
    text-decoration: underline;
}

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 5px;
}