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

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigazione */
header {
    background-color: #1a252f;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

#logo span {
    color: #00adb5;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #00adb5;
}

/* Sezione Contatti */
.contatti-section {
    padding: 60px 0;
}

.contatti-section h1 {
    text-align: center;
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.contatti-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contatti-info, .contatti-form {
    flex: 1;
}

.contatti-info h3, .contatti-form h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 20px;
    border-bottom: 2px solid #00adb5;
    padding-bottom: 10px;
    display: inline-block;
}

.info-item {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: border 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #00adb5;
    background-color: #fff;
}

.privacy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy input {
    width: auto;
}

.privacy label {
    margin-bottom: 0;
    font-weight: normal;
}

.privacy a {
    color: #00adb5;
    text-decoration: none;
}

.btn-submit {
    background-color: #00adb5;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #008c95;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    font-size: 14px;
}

/* Responsive per Smartphone */
@media (max-width: 768px) {
    .contatti-wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}