.elementor-2228 .elementor-element.elementor-element-86ad019{--display:flex;}.elementor-2228 .elementor-element.elementor-element-5cc9512 > .elementor-widget-container{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-text ) 0%, #29F272 100%);border-style:double;border-width:14px 14px 14px 14px;border-color:#DAB009;}.elementor-2228 .elementor-element.elementor-element-6f3cb76{background-color:#DAB23F;border-style:double;border-width:30px 30px 30px 30px;}.elementor-2228 .elementor-element.elementor-element-2288463{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* RESET & BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #e5c158; /* Sfondo dorato, caldo ed elegante */
    color: #1a2229; /* Testo scuro per un perfetto contrasto leggibile sullo sfondo oro */
    font-family: 'Lora', Georgia, serif;
    line-height: 1.8;
    font-size: 1.15rem;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* HEADER SECTION */
header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 30px;
}

/* Linea geometrica decorativa scura sotto l'header */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #0f1821; 
    border-bottom: 2px solid #0f1821;
}

.icon-main {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f1821;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #0f1821; /* Blu notte-antracite molto profondo per massima leggibilità */
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3945; /* Tono scuro coordinato */
    font-weight: 400;
}

/* CONTENT STYLES */
.intro-text {
    font-size: 1.25rem;
    color: #0f1821;
    font-style: italic;
    margin-bottom: 40px;
    border-left: 3px solid #0f1821;
    padding-left: 20px;
}

p {
    margin-bottom: 25px;
    text-align: justify;
}

/* SECTION STYLES */
section {
    margin-top: 50px;
    padding-top: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0f1821;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

h2 span.icon {
    font-size: 1.5rem;
}

/* CALL TO ACTION / FOOTER BOX (Inversione cromatica di contrasto) */
.cta-box {
    background-color: #0f1821; /* Box blu notte-antracite */
    color: #e5c158; /* Testo dorato ricreato all'interno */
    padding: 40px;
    margin-top: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(15, 24, 33, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dettaglio geometrico interno alla card */
.cta-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(229, 193, 88, 0.3);
    pointer-events: none;
}

.cta-box p {
    text-align: center;
    margin-bottom: 20px;
}

.cta-box p:last-of-type {
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #e5c158;
    font-size: 1.3rem;
}

/* RESPONSIVE DESIGN (Ottimizzazione Mobile) */
@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .subtitle { font-size: 1.2rem; }
    h2 { font-size: 1.5rem; }
    .container { padding: 40px 15px; }
    .cta-box { padding: 25px 15px; }
    p { text-align: left; }
}/* End custom CSS */