html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body {
    background-color: #e0f0ff; /* colore base chiaro */
    background-image: url("data:image/svg+xml,%3Csvg width='100%' height='100%' viewBox='0 0 1440 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 C360,0 1080,200 1440,50 L1440,0 L0,0 Z' fill='rgba(0,80,130,0.12)'/%3E%3Cpath d='M0,300 C360,150 1080,450 1440,250 L1440,0 L0,0 Z' fill='rgba(0,80,130,0.15)'/%3E%3Cpath d='M0,350 C480,250 960,450 1440,300 L1440,0 L0,0 Z' fill='rgba(0,80,130,0.1)'/%3E%3Cpath d='M0,380 C360,300 1080,500 1440,350 L1440,0 L0,0 Z' fill='rgba(0,80,130,0.08)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 32px;
}

h3 {
    font-size: 24px!important;
}

h4 {
    font-size: 20px!important;
}

.home-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    max-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Immagine di sfondo */
.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 60, 0.55);
    z-index: 1;
}

/* Contenuto principale */
.home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Blocco testo */
.home-hero-content > h1,
.home-hero-content > p,
.home-hero-content > a {
    max-width: 550px;
}

/* Creiamo un wrapper virtuale per il testo */
.home-hero-content {
    gap: 40px;
}

/* Testo */
.home-hero-content h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.home-hero-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.home-hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0a6aa1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-hero-btn:hover {
    background: #084f79;
}

/* Immagine a destra */
.home-hero-content img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

footer {
    background-color: #084f79;
    padding: 20px 10px;
    color: #FFF;
}