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

:root {
    --primary-color: #0066cc;
    --primary-light: #3385d6;
    --secondary-color: #004a99;
    --accent-color: #00d4ff;
    --light-color: #f0f5ff;
    --dark-color: #1a1a2e;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e6ed;
    --success-color: #27ae60;
    --shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 102, 204, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #003d7a 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content p:not(.hero-subtitle) {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
    opacity: 0.95;
    font-weight: 300;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Buttons */
.btn {
    padding: 0.95rem 2.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, white 0%, #f5f9ff 100%);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

/* Servizi Section */
.servizi {
    padding: 5rem 2rem;
    background: white;
}

.servizi h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.servizi h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.servizio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.servizio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servizio-card:hover::before {
    transform: scaleX(1);
}

.servizio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.servizio-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.servizio-card:hover .servizio-icon {
    transform: scale(1.2) rotate(5deg);
}

.servizio-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.servizio-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Interventi Chirurgici Section */
.interventi {
    padding: 5rem 2rem;
    background: white;
}

.interventi h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.interventi h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.interventi-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.interventi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.intervento-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
    padding: 2.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.intervento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px 10px 0 0;
}

.intervento-card:hover::before {
    transform: scaleX(1);
}

.intervento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, white 0%, #f5f9ff 100%);
}

.intervento-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intervento-card:hover .intervento-icon {
    transform: scale(1.2) rotate(10deg);
}

.intervento-card h4 {
    color: #e74c3c;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.intervento-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Prestazioni Section */
.prestazioni {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.prestazioni h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.prestazioni h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.prestazioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.prestazione-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.prestazione-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px 10px 0 0;
}

.prestazione-item:hover::before {
    transform: scaleX(1);
}

.prestazione-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.prestazione-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prestazione-item:hover .prestazione-icon {
    transform: scale(1.2) rotate(-10deg);
}

.prestazione-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.prestazione-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Curriculum Section */
.curriculum {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.curriculum h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.curriculum h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.curriculum-content {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.curriculum-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.curriculum-item:hover::before {
    transform: scaleY(1);
}

.curriculum-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.curriculum-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.curriculum-item:hover .curriculum-icon {
    transform: scale(1.15) rotate(-10deg);
}

.curriculum-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.curriculum-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Orari Section */
.orari {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.orari h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.orari h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.orari-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.orari-table {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.orario-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: all 0.3s ease;
}

.orario-row:last-child {
    border-bottom: none;
}

.orario-row:hover {
    background: var(--light-color);
}

.giorno {
    padding: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
}

.ore {
    padding: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.orari-nota {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.orari-nota p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 500;
}

.orari-nota p:last-child {
    margin-bottom: 0;
}

.orari-nota a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.orari-nota a:hover {
    color: var(--accent-color);
}

/* Chi Siamo Section */
.chi-siamo {
    padding: 5rem 2rem;
    background: white;
}

.chi-siamo h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.chi-siamo h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.chi-siamo-image {
    position: relative;
    text-align: center;
}

.doctor-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease;
}

.doctor-image:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
}

.testo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testo h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.testo p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 0.95rem;
}

.valori {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.valori h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.valori ul {
    list-style: none;
}

.valori li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 1.5rem;
    position: relative;
}

.valori li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.valori li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contatti Section */
.contatti {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.contatti h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
}

.contatti h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.contatti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contatto-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contatto-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contatto-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contatto-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contatto-info a:hover {
    color: var(--accent-color);
}

/* Form */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: linear-gradient(135deg, white 0%, #f5f9ff 100%);
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Google Maps */
.mappa-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.mappa-container h3 {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.google-maps {
    border-radius: 0 0 12px 12px;
    display: block;
}

/* Social Section */
.social-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.social-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
}

.social-link.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.social-link.facebook:hover {
    background-color: #1877f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.social-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f0f23 100%);
    color: white;
    text-align: center;
    padding: 3rem;
    margin-top: 3rem;
}

.footer p {
    margin: 0.5rem 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .servizi h2,
    .orari h2,
    .chi-siamo h2,
    .contatti h2 {
        font-size: 2rem;
    }

    .chi-siamo-content,
    .orari-content {
        grid-template-columns: 1fr;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
    }

    .contatti-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .orario-row {
        grid-template-columns: 100px 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .servizi,
    .orari,
    .chi-siamo,
    .contatti {
        padding: 2.5rem 1rem;
    }

    .servizi h2,
    .orari h2,
    .chi-siamo h2,
    .contatti h2 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}
