#main-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    background-color: #ffffff;
    color: #111111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    letter-spacing: -0.01em;
}

#main-text h1 {
    font-size: clamp(22px, 3.8vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 4px solid #111111;
}

#main-text h2 {
    font-size: clamp(17px, 2.5vw, 21px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 26px 0 12px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #111111;
}

#main-text h3 {
    font-size: clamp(13px, 1.8vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 20px 0 10px 0;
    color: #444444;
}

#main-text p {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 12px 0;
    text-align: justify;
    text-justify: inter-word;
}

#main-text p:first-of-type {
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
}

#main-text p:last-of-type {
    margin-bottom: 0;
}

#main-text ol, #main-text ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    border-top: 1px solid #111111;
    border-bottom: 1px solid #111111;
}

#main-text ol {
    counter-reset: hotel-counter;
}

#main-text ol li {
    counter-increment: hotel-counter;
}

#main-text ol li::before {
    content: "[" counter(hotel-counter, decimal-leading-zero) "]";
    font-weight: 700;
    margin-right: 12px;
    font-family: monospace;
}

#main-text ul li::before {
    content: "—";
    font-weight: 700;
    margin-right: 12px;
}

#main-text li {
    font-size: 13.5px;
    line-height: 1.45;
    padding: 8px 4px;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: flex-start;
}

#main-text li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 600px) {
    #main-text p {
        text-align: left;
    }
}