body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

body {
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    text-align: center;
}

h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.1rem;
    margin: 15px;
    padding-left: 1em;
    position: relative;
    line-height: 1.1;
    word-wrap: break-word;
}

ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #007BFF;
}

.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 20px;
}

.note {
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.analyses-section {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.analyses-section > div {
    width: 48%;
}

@media (max-width: 768px) {
    .analyses-section {
        flex-direction: column;
    }

    .analyses-section > div {
        width: 100%;
    }
}
