* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
	border-bottom:black 1px solid;
}

p {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150% !important;
}


h1 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #ffffff;
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 100% !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
	}
	
	h2 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #000000;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 100% !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
	}
	
	button {
    padding: 15px 20px;
    background-color: #f0f0f0;
    width: 100%;
    color: white;
    border-radius: 2px;
	border:black 1px solid;
    cursor: pointer;
    font-weight: bold;
}

	button:hover {
    padding: 15px 20px;
    background-color: #a0a0a0;
    width: 100%;
    color: white;
    border: black 1px solid;
    border-radius: 2px;
    cursor: pointer;
    font-weight: bold;
}

header .logo {
    font-size: 1.5em;
}

header .logo img {
    height: 60px; /* Puoi regolare l'altezza del logo come preferisci */
}

header nav ul {
    list-style: none;
    display: flex;
    font-weight:bold;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
}

header nav ul li a:hover {
    color: red;
    text-decoration: underline;
	text-decoration-thickness: 3px;
}

header .info {
    font-size: 0.9em;
}

.above-the-fold {
	margin-top:80px;
    position: relative;
    height: 100vh;
    background: url('background-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10%;
    color: white;
}

.above-the-fold .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 103%;
    background: rgba(0, 0, 0, 0.4); /* Regola l'opacità qui */
}

.above-the-fold .text-content {
    position: relative;
    z-index: 10;
    max-width: 33%;
}

.three-boxes {
    display: flex;
    justify-content: space-evenly;
    padding: 80px 0;
    background: #fff;
}

.three-boxes .box {
    width: 25%;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.two-boxes {
    display: flex;
    justify-content: space-evenly;
    padding: 80px 0;
    background: #f4f4f4;
}

.two-boxes .box1 {
    width: 30%;
    padding-left: 40px;
	padding-right: 40px;
	padding-top: 80px;
	padding-bottom: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-section {
    padding: 0px 0;
	background: #2c2c2c;
}

.text-image {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
	
}

.text-image img {
    max-width: 50%;
}

.text-image .text {
    padding: 20px;
    width: 50%;
	height:100%;
}

.text-image img {
    margin: 0;
}

.text-image:nth-child(even) img {
    order: 1;
}

.two-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
}

.two-columns .column {
    width: 50%;
    padding: 20px;
}

.two-columns .column img {
    max-width: 100%;
    height: auto;
}

 .footer {
            background-color: #000;
            color: #fff;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
			padding-bottom:80px;
        }
        .footer-column {
            width: 30%;
            padding: 0 20px;
        }
        .footer-column h3 {
            border-bottom: 2px solid #444;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .footer-column p {
            margin: 0;
            padding-bottom: 10px;
        }
		
.fixed-footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: #333;
            color: white;
            text-align: center;
            padding-top: 10px;
			z-index: 1000;
        }
		
 .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 120px;
			margin-bottom: 80px;
        }
.accordion-item {
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
.accordion-title {
            background-color: #333;
            color: #fff;
            cursor: pointer;
            padding: 16px;
            font-size: 18px;
            border: none;
            outline: none;
            text-align: left;
            width: 100%;
            transition: background-color 0.3s ease;
        }
.accordion-title:hover,
.accordion-title.active {
            background-color: #555;
        }
.accordion-content {
            background-color: #fff;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 15px;
        }
.accordion-content p {
            padding: 15px;
            margin: 0;
        }


/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align: center; /* Center all the text */
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Centered text area */
textarea {
    width: 80%;
    height: 100px;
    margin: 10px auto;
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}





