/* Reset generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f3f5f3; /* Sfondo leggermente grigio-verde pulito */
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layout principale a due colonne */
.landing-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 80vh;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(4, 68, 20, 0.08); /* Ombra con punta di verde */
    border-radius: 12px;
    overflow: hidden;
    margin: 20px;
}

/* Colonna sinistra: Immagine copertina */
.image-section {
    flex: 1;
    position: relative;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Colonna destra: Testi e informazioni */
.content-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gestione Logo */
.logo-container {
    margin-bottom: 25px;
}

.brand-logo {
    max-width: 220px;
    height: auto;
    display: block;
}

/* Tipografia */
h1 {
    font-size: 2.2rem;
    color: #044414; /* Verde scuro Sicafer */
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.presentation {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

h2 {
    font-size: 1.2rem;
    color: #044414; /* Verde scuro Sicafer */
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pulsanti dei Contatti */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
}

.email-btn {
    background-color: #044414; /* Verde scuro Sicafer */
    color: #ffffff;
}

.email-btn:hover {
    background-color: #06631d; /* Verde più luminoso al passaggio del mouse */
}

.phone-btn {
    background-color: #f0f5f1; /* Fondo verde chiarissimo */
    color: #044414;
    border: 1px solid rgba(4, 68, 20, 0.2);
}

.phone-btn:hover {
    background-color: #e1eae3;
}

.web-link {
    font-size: 0.9rem;
    color: #718096;
}

.web-link a {
    color: #044414;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive per Smartphone */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        margin: 10px;
    }
    
    .image-section {
        height: 220px;
    }
    
    .content-section {
        padding: 35px 20px;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    .brand-logo {
        max-width: 180px;
    }
}