/* General Styles */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Candara, sans-serif;
    color: #3b3a7e;
}

/* Layout Sections */
header, section, footer {
    text-align: left;
    padding: 1px;
}
section {
    padding: 20px 20px;
}
header {
    position: relative;
    background: url('../images/_MG_1607-Modifica.jpg') no-repeat center;
    background-size: cover;
    color: #cae9f7;
    height: 45vh; /* Full viewport height */
}

.services, .projects, .contact, .about {
    background-color: #c5e6f5;
    margin: 2px 0;
}

.services .card {
    flex: 1 1 30%; /* Adjust the width as needed */
    display: flex;
    flex-direction: column;
    height: 100%;
}

footer {
    background-color: #333;
    color: white;
}

/* Cookie Consent Box */
.cookie-consent-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the button horizontally */
}

.cookie-consent-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}




