        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #69c0ab, #1f5068);
            color: white;
            padding: 120px 0 60px;
            min-height: 100vh;
        }
        
        .hero .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: white;
            border-radius: 3px;
        }
        
        /* Servizi List */
        .servizi-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .servizio-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .servizio-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .servizio-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 25px;
            background: white;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .servizio-header:hover {
            background: #f8f9fa;
        }
        
        .servizio-nome {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }
        
        .expand-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #2c7da0;
            color: white;
            border-radius: 8px;
            font-size: 1rem;
            transition: transform 0.3s;
        }
        
        .servizio-item.expanded .expand-icon {
            transform: rotate(90deg);
        }
        
        .servizio-nome h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin: 0;
        }
        
        .servizio-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .servizio-actions a {
            color: #2c7da0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .servizio-actions a:hover {
            color: #1f5068;
            transform: translateX(3px);
        }
        
        /* Dettagli espansi */
        .servizio-details {
            display: none;
            padding: 20px 25px;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
        }
        
        .servizio-item.expanded .servizio-details {
            display: block;
            animation: slideDown 0.3s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .details-section {
            margin-bottom: 20px;
        }
        
        .details-section:last-child {
            margin-bottom: 0;
        }
        
        .details-title {
            font-weight: 600;
            color: #2c7da0;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .medici-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .medico-badge {
            background: white;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2c3e50;
            border: 1px solid #ddd;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .medico-badge i {
            color: #2c7da0;
        }
        
        .tipi-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tipo-badge {
            background: white;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2c7da0;
            border: 1px solid #2c7da0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .empty-message {
            color: #6c757d;
            font-size: 0.85rem;
            font-style: italic;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 0;
        }
        
        @media (max-width: 768px) {
            .servizio-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .servizio-actions {
                align-self: flex-end;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .nav-links {
                display: none;
            }
        }