/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo del sito */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2a3d66;
    color: white;
    padding: 40px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

header h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sezioni di contenuto con 2 colonne */
.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
}

.content-section {
    padding: 20px;
    flex: 1 1 calc(50% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: white;
}

/* Colori dei riquadri */
.section-blue {
    background-color: #1f3c5e; /* Blu scuro */
}

.section-yellow {
    background-color: #f1c40f; /* Giallo */
    color: #333;
}

.section-green {
    background-color: #27ae60; /* Verde */
}

.section-gray {
    background-color: #7f8c8d; /* Grigio */
}

.content-section:hover {
    transform: scale(1.05);
}

.content-section h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.content-section p {
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #2a3d66;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Banner Cookie */
.cookie-banner {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 10px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.cookie-banner p {
    font-size: 1em;
    color: #fff;
    margin-right: 20px;
}

#accept-cookies {
    background-color: #1a7fa7;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#accept-cookies:hover {
    background-color: #003f5f;
}
/* Stile del bottone */
.button-container {
    margin-top: 40px;
    text-align: center;
}

.btn-go-to-page {
    display: inline-block;
    background-color: #005f73;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect: ingrandimento del bottone */
.btn-go-to-page:hover {
    background-color: #008c94;
    transform: scale(1.1);
}

.btn-go-to-page:active {
    transform: scale(0.95);
}
