/* --- ACCOMMODATION PAGE STYLES --- */

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

/* Page Title (Matches Levels and Thank You pages) */
.section-title-logo {
    text-align: center;
    display: block;
    width: 100%;
    color: #0073a5 !important;
    font-size: 16px !important; /* Visual balance with logo */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.cefr-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    display: block;
}

/* --- INTRODUCTION SECTION --- */
.intro-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1050px;
    margin: 0 auto 60px auto;
}

.intro-text-column {
    flex: 1.5;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.levels-small-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 0 !important; /* STRAIGHT ANGLES */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- ACCOMMODATION ACCORDIONS --- */

/* Main Category Title (Reduced to compensate for uppercase weight) */
.level-group-title {
    font-size: 14px !important;
    font-weight: bold;
    color: #0073a5;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 6px;
    margin: 40px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Accommodation types (A1 equivalent) */
.sub-level-box summary {
    font-size: 16px !important; /* Balanced size for readability */
    font-weight: bold;
    color: #0073a5;
    cursor: pointer;
    padding: 10px 0;
    list-style: none;
}

.sub-level-box summary:hover {
    color: #008cc0;
    text-decoration: underline;
}

/* Detail box when accordion is open */
.level-detail-text {
    background-color: #F3FCFF; /* Corporate light blue background */
    padding: 25px;
    border-left: 5px solid #00B0F0;
    margin: 5px 0 20px 20px;
    line-height: 1.6;
    color: #444;
    font-size: 14px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 850px) {
    .intro-container { 
        flex-direction: column; 
        text-align: center; 
    }
    .intro-text-column {
        text-align: center;
    }
}
