:root {
    --azzurro-polvere: #B0D4E8;
    --azzurro-polvere-light: #D6EAF5;
    --azzurro-polvere-dark: #7BB8D4;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #85929E;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFB;
    --bg-gradient: linear-gradient(135deg, #F8FAFB 0%, #E8F4F8 100%);
    --border-light: #E5EEF2;
    --shadow-soft: 0 4px 20px rgba(176, 212, 232, 0.15);
    --shadow-medium: 0 8px 30px rgba(176, 212, 232, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--azzurro-polvere-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-brand:hover {
    color: var(--azzurro-polvere-dark);
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--azzurro-polvere-dark);
}

.hero-section {
    background: var(--bg-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(176, 212, 232, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--bg-light);
}

.section-gradient {
    background: var(--bg-gradient);
}

.content-block {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.content-block-accent {
    border-left: 4px solid var(--azzurro-polvere);
}

.content-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.content-image-side {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--azzurro-polvere-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--azzurro-polvere-dark);
}

.limiti-section {
    background: linear-gradient(135deg, var(--azzurro-polvere-light) 0%, var(--bg-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin: 2rem 0;
}

.limiti-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.limiti-list {
    list-style: none;
    padding: 0;
}

.limiti-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.limiti-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--azzurro-polvere);
    border-radius: 50%;
}

.btn-info-cta {
    background: var(--azzurro-polvere);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-info-cta:hover {
    background: var(--azzurro-polvere-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.cta-section {
    background: var(--bg-gradient);
    padding: 4rem 0;
    text-align: center;
}

.disclaimer-banner {
    background: var(--azzurro-polvere-light);
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--azzurro-polvere);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--azzurro-polvere);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background: rgba(176, 212, 232, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--azzurro-polvere);
}

.page-header {
    background: var(--bg-gradient);
    padding: 4rem 0;
    text-align: center;
}

.page-content {
    padding: 4rem 0;
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--azzurro-polvere);
    box-shadow: 0 0 0 3px rgba(176, 212, 232, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--azzurro-polvere-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.policy-content h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-gradient);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--azzurro-polvere-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--azzurro-polvere-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-btn {
    background: var(--azzurro-polvere);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: var(--azzurro-polvere-dark);
    color: var(--bg-white);
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .limiti-section {
        padding: 2rem;
    }
    
    .content-image-side {
        min-height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}
