/* Layout Generale della Pagina */
.cs-page {
    background-color: #f0f7f9; /* Un azzurro chiarissimo come nel tuo esempio */
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.cs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 8vw, 100px);
    max-width: 900px;
    margin: 0 auto;
}

/* Parte Sinistra: Il cerchio con l'immagine */
.cs-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cs-circle-bg {
    width: clamp(200px, 25vw, 320px);
    height: clamp(200px, 25vw, 320px);
    background: #FEC502; /* Blu scuro come nello screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cs-circle-bg img {
    width: 65%;
    height: auto;
    object-fit: contain;
}

/* Parte Destra: Testo */
.cs-text-content {
    flex: 1;
    text-align: left;
}

.cs-main-title {
    font-family: 'Playfair Display', serif; /* O il tuo font del sito */
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.9;
    color: #FEC502;
    font-style: italic;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.cs-sub-title {
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #8fa3b0;
    font-weight: 700;
    margin-bottom: 20px;
}

.cs-divider {
    width: 60px;
    height: 3px;
    background: #FEC502;
    margin-bottom: 30px;
}

.cs-back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2c5d86;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.cs-back-link svg {
    width: 18px;
    margin-right: 8px;
}

.cs-back-link:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cs-container {
        flex-direction: column;
        text-align: center;
    }
    .cs-visual {
        justify-content: center;
    }
    .cs-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cs-main-title {
        font-size: 4rem;
    }
}