/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f4f8; /* Very light gray-blue background */
    color: #333;
    text-align: center;
    padding: 20px;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 15px 30px;
    border-bottom: 2px solid #d1e3e8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 80px;
    max-width: 100%;
    margin-right: 15px;
}

.header-text {
    text-align: left;
}

.header-text h1 {
    font-size: 2.2em;
    color: #2c3e50; /* Dark blue-gray for the title */
    margin: 0;
}

.header-text p {
    color: #607d8b; /* Muted gray-blue for subtitle */
    font-style: italic;
    margin: 5px 0 0;
}

section {
    margin: 20px auto;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #d1e3e8;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 650px;
}

section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 10px;
}

section.details ul,
section.info ul {
    list-style: disc;
    padding-left: 30px;
}

section.details ul ul {
    list-style: circle;
    padding-left: 30px;
}

section.info ul ul {
    list-style: circle; /* Different style for nested lists */
    padding-left: 20px;
}

li {
    font-size: 1em;
    margin: 8px 0;
}

footer {
    margin-top: 30px;
    color: #607d8b;
    font-size: 0.9em;
    padding: 10px;
    border-top: 1px solid #d1e3e8;
}
